-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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": "nuxt-boilerplate",
"version": "0.1.1",
"author": "yanyue404",
"scripts": {
"serve": "cross-env PATH_TYPE=development nuxt",
"dev": "sh build.sh dev",
"build": "sh build.sh generate",
"generate": "nuxt generate",
"deploy": "node deploy.js",
"prepare": "husky install",
"lint": "eslint --ext .vue pages/ --ext .vue components --ext .js store/",
"prettier": "prettier pages/** store/* components/* --write",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"darken": "^1.5.0",
"element-ui": "^2.15.13",
"github-markdown-css": "^5.2.0",
"lodash": "^4.17.19",
"nuxt": "^2.11.0",
"qs": "^6.9.6",
"vuex-persistedstate": "^2.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.12.17",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/lint": "^17.0.3",
"@commitlint/load": "^17.0.3",
"@commitlint/parse": "^17.0.0",
"@nuxtjs/axios": "^5.5.4",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/proxy": "^1.3.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.3",
"cz-customizable": "^6.9.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^9.3.0",
"husky": "^7.0.1",
"less": "^4.1.0",
"less-loader": "^7.3.0",
"lint-staged": "^9.5.0",
"postcss-pxtorem": "^5.1.1",
"prettier": "^2.7.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"shelljs": "^0.8.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"pages/*.vue": [
"eslint --fix",
"prettier --write",
"git add"
],
"store/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}