-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.75 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
{
"name": "vue-pc-template",
"version": "0.1.0",
"description": "Vue PC Template, all you need to do is `git clone`",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PLQin/vue-pc-template.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"modern": "vue-cli-service build --modern",
"report": "vue-cli-service build --report-json",
"lint": "vue-cli-service lint",
"mock": "json-server --watch mock/db.js --m mock/post-to-get.js",
"analyzer": "vue-cli-service build --report"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.32",
"js-cookie": "^2.2.1",
"swiper": "^3.4.2",
"vue": "^2.6.11",
"vue-i18n": "^8.3.2",
"vue-router": "^3.0.6",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "^4.5.3",
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.3.4",
"compression-webpack-plugin": "^5.0.1",
"eslint": "^6.7.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-vue": "^6.2.2",
"json-server": "^0.16.1",
"lint-staged": "^10.2.11",
"mockjs": "^1.1.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10",
"webpack-bundle-analyzer": "^3.8.0"
},
"keywords": [
"Vue",
"Nuxt",
"template",
"vue-pc-template",
"vue-pc-base"
],
"gitHooks": {
"prepare-commit-msg": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint"
]
},
"engines": {
"node": ">= 12.18.0",
"npm": ">= 6.14.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}