-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "playman",
"version": "0.1.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.6.0",
"file-saver": "^2.0.2",
"jszip": "^3.2.2",
"papaparse": "^5.1.1",
"promise-throttle": "^1.0.1",
"spotify-web-api-node": "^4.0.0",
"vue": "^2.6.11",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vue-virtual-scroller": "^1.0.0-rc.2",
"vuetify": "^2.1.15",
"vuex": "^3.1.2",
"vuex-class": "^0.3.2",
"vuex-persist": "^2.2.0",
"workbox-window": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/file-saver": "^2.0.1",
"@types/papaparse": "^5.0.3",
"@types/spotify-web-api-node": "^4.0.1",
"@types/workbox-window": "^4.3.3",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-pwa": "^4.1.1",
"@vue/cli-plugin-typescript": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"autoprefixer": "^9.7.3",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"css-loader": "^5.2.7",
"cssnano": "^4.1.10",
"glob-all": "^3.1.0",
"html-webpack-plugin": "4",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"promise-worker": "^2.0.1",
"sass": "~1.32.6",
"sass-loader": "^8.0.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^3.7.4",
"vue-cli-plugin-netlify-lambda": "^0.1.1",
"vue-cli-plugin-vuetify": "^2.0.2",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3",
"webpack": "^4.0.0",
"webpack-bundle-analyzer": "latest",
"worker-loader": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://playman.dantis.me",
"license": "AGPL-3.0-only",
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"repository": "https://github.com/jareddantis/playman"
}