-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.07 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
{
"name": "shuhelper-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"analyz": "NODE_ENV=production npm_config_report=true yarn build",
"test": "node ./node_modules/mocha/bin/_mocha --require ts-node/register --require tsconfig-paths/register --exit --ui bdd ./src/**/*.spec.ts",
"e2e": "node ./node_modules/mocha/bin/_mocha --require ts-node/register --exit --ui bdd ./src/e2e/e2e.ts"
},
"dependencies": {
"@mdi/font": "^3.6.95",
"axios": "^0.19.0",
"axios-extensions": "^3.0.6",
"core-js": "^3.3.2",
"date-fns": "^2.8.0",
"fp-ts": "^2.1.2",
"json-interface2class": "^1.0.2",
"register-service-worker": "^1.6.2",
"roboto-fontface": "*",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-flat-surface-shader": "^1.0.5",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vuetify": "^2.1.12",
"vuex": "^3.0.1",
"workbox-webpack-plugin": "^4.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/puppeteer": "^2.0.0",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-pwa": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.0.0",
"@vue/cli-service": "^4.0.0",
"chai": "^4.2.0",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"puppeteer": "^2.0.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"typescript": "~3.5.3",
"vue-cli-plugin-pwa": "^1.0.0-alpha.1",
"vue-cli-plugin-vuetify": "^2.0.2",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0",
"vuex-module-decorators": "^0.11.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}