forked from Vitaminaq/cfsw-vue-cli3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "cfsw",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"prettier-watch": "onchange 'src/**/*.js' 'src/**/*.ts' 'src/**/*.vue' -- prettier --write {{changed}}"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"faker": "^4.1.0",
"js-cookie": "^2.2.0",
"register-service-worker": "^1.0.0",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-dom-lazy-load": "^1.0.0",
"vue-images-lazy-load": "^1.0.6",
"vue-property-decorator": "^7.0.0",
"vue-rescroll": "^1.0.22",
"vue-router": "^3.0.1",
"vue-virtual-scroller": "^1.0.0-beta.2",
"vuex": "^3.0.1",
"vuex-class.js": "^0.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0",
"@vue/cli-plugin-eslint": "^3.0.0",
"@vue/cli-plugin-pwa": "^3.0.0",
"@vue/cli-plugin-typescript": "^3.0.0",
"@vue/cli-service": "^3.0.0",
"@vue/eslint-config-prettier": "^4.0.0",
"@vue/eslint-config-typescript": "^3.1.0",
"babel-eslint": "^10.0.1",
"commitizen": "^3.0.4",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.0.0-0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.0.4",
"postcss-px2rem": "^0.3.0",
"prettier": "1.15.2",
"typescript": "^3.0.0",
"vue-html5-editor": "^1.1.1",
"vue-template-compiler": "^2.5.17"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": [
"yarn lint",
"git add ."
]
}
}