-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
95 lines (95 loc) · 2.71 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ts-vue",
"version": "0.1.0",
"private": true,
"author": "Cosen95",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --fix",
"svg": "vsvg -s ./src/icons/svg -t ./src/icons/components --ext ts --es6",
"test:unit": "vue-cli-service test:unit",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"core-js": "^2.6.5",
"cors": "^2.8.5",
"driver.js": "^0.9.7",
"echarts": "^4.3.0",
"element-ui": "^2.12.0",
"express": "^4.17.1",
"js-cookie": "^2.2.1",
"morgan": "^1.9.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^3.0.0",
"screenfull": "^5.0.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3",
"vue-svgicon": "^3.2.6",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"vuex-module-decorators": "^0.10.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/chai": "^4.1.0",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/echarts": "^4.1.14",
"@types/express": "^4.17.1",
"@types/js-cookie": "^2.2.2",
"@types/mocha": "^5.2.4",
"@types/morgan": "^1.7.37",
"@types/nprogress": "^0.2.0",
"@types/webpack-env": "^1.14.0",
"@types/yamljs": "^0.2.30",
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-plugin-unit-mocha": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"chai": "^4.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^7.0.1",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^11.1.2",
"prettier": "^1.18.2",
"sass": "^1.22.12",
"sass-loader": "^8.0.0",
"style-resources-loader": "^1.2.1",
"typescript": "^3.4.3",
"vue-cli-plugin-element": "^1.0.1",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{ts,vue}": [
"vue-cli-service lint",
"git add"
]
}
}