-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
86
87
88
89
90
91
92
93
94
{
"name": "gwa",
"version": "0.1.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"analyze": "webpack-bundle-analyzer -O dist/stats.json",
"serve:dist": "ws --spa -d dist --key ssl/localhost.key --cert ssl/localhost.crt --rewrite '/gwa-calc/(.*) -> /$1' -z --http2"
},
"dependencies": {
"core-js": "^3.6.0",
"file-saver": "^2.0.2",
"localforage": "^1.7.3",
"lz-string": "^1.4.4",
"qr-scanner": "^1.1.1",
"qrcode": "^1.4.4",
"register-service-worker": "^1.6.2",
"sortablejs": "^1.10.1",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vuetify": "^2.1.15",
"vuex": "^3.1.2",
"vuex-persist": "^2.2.0",
"workbox-window": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/body-scroll-lock": "^2.6.1",
"@types/file-saver": "^2.0.1",
"@types/jest": "^24.0.24",
"@types/lz-string": "^1.3.33",
"@types/qrcode": "^1.3.4",
"@types/sortablejs": "^1.10.2",
"@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-plugin-unit-jest": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/test-utils": "1.0.0-beta.30",
"autoprefixer": "^9.7.3",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"cssnano": "^4.1.10",
"deepmerge": "^4.2.2",
"fibers": "^4.0.2",
"glob-all": "^3.1.0",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"sass": "^1.24.0",
"sass-loader": "^8.0.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-loader": "^1.1.1",
"terser-webpack-plugin": "^2.3.1",
"typescript": "^3.7.4",
"vue-bus-ts": "^1.0.8",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-dev-server": "^3.10.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://jareddantis.github.io/gwa-calc",
"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/gwa-calc"
}