-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.79 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": "sandwich",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "yarn serve:editor & yarn serve:site",
"serve:editor": "node scripts/serve.js editor --port 9001",
"serve:site": "node scripts/serve.js site --port 9002",
"build": "yarn build:editor & yarn build:site & wait",
"build:editor": "node scripts/build.js editor",
"build:site": "node scripts/build.js site",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.4.3",
"element-ui": "^2.13.0",
"hammerjs": "^2.0.8",
"normalize.css": "^8.0.1",
"vue": "^2.6.10",
"vuex": "^3.1.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@vue/cli-plugin-babel": "^4.5.8",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"style-resources-loader": "^1.3.2",
"svg-sprite-loader": "^4.1.6",
"svg-transform-loader": "^2.0.8",
"svgo-loader": "^2.2.1",
"vue-cli-plugin-style-resources-loader": "^0.1.4",
"vue-template-compiler": "^2.6.10"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e"
},
"lint-staged": {
"*.{js,vue}": [
"cross-env NODE_ENV=production vue-cli-service lint",
"git add"
]
}
}