-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "2019-ncov-vue3-version",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"start": "yarn serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"format": "prettier --write \"src/**/*.js\" \"src/**/*.ts\" \"src/**/*.vue\"",
"commit": "git-cz"
},
"dependencies": {
"@vue/composition-api": "^0.3.4",
"axios": "^0.19.2",
"dayjs": "^1.8.19",
"echarts": "^4.6.0",
"path": "^0.12.7",
"prettier": "^1.19.1",
"view-design": "^4.1.2",
"vue": "^2.6.11"
},
"devDependencies": {
"@types/echarts": "^4.4.3",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-typescript": "^5.0.1",
"babel-plugin-component": "^1.1.1",
"commitizen": "^4.0.3",
"compression-webpack-plugin": "^3.1.0",
"cz-customizable": "^6.2.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.1.2",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"typescript": "~3.7.5",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run format",
"git add"
]
}
}