-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "vueshop",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@ionic/core": "^5.3.5",
"@modus/ionic-vue": "^3.0.0-beta.1",
"core-js": "^3.6.5",
"lodash": "^4.17.20",
"register-service-worker": "1.7.1",
"vue": "^3.0.0-0",
"vue-router": "^4.0.0-beta.13"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@modus/gimbal-plugin-axe": "^1.2.6",
"@modus/gimbal-plugin-source-map-explorer": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-plugin-typescript": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/compiler-sfc": "^3.0.0-rc.9",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.0-beta.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.1.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"npm run lint --fix"
],
"*.{html,scss,css}": [
"prettier --write"
]
},
"vue": {
"pwa": {
"workboxOptions": {
"exclude": [
"_headers",
"_redirects"
]
}
}
}
}