-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
99 lines (99 loc) · 3.06 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
96
97
98
99
{
"name": "d2-admin-start-kit-plus",
"version": "1.10.0",
"license": "MIT",
"repository": "git@git.dev.tencent.com:hank_cp/lolth-client.git",
"scripts": {
"start": "vue-cli-service serve --open --mode production",
"dev": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"build:prod": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint --fix",
"upload": "vue-cli-service ssh",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e --mode development"
},
"dependencies": {
"axios": "^0.19.2",
"better-scroll": "^1.15.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.24",
"element-ui": "^2.13.1",
"flex.css": "^1.1.7",
"fuse.js": "^5.2.1",
"hotkeys-js": "^3.7.6",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"qs": "^6.9.3",
"reflect-metadata": "^0.1.13",
"screenfull": "^5.0.2",
"sortablejs": "^1.10.2",
"ua-parser-js": "^0.7.21",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-i18n": "^8.17.3",
"vue-property-decorator": "^8.4.1",
"vue-router": "^3.1.6",
"vuex": "^3.2.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.1.2",
"@d2-projects/vue-filename-injector": "^1.1.1",
"@kazupon/vue-i18n-loader": "^0.5.0",
"@types/core-js": "^2.5.3",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/qs": "^6.9.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-e2e-cypress": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-router": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-plugin-vuex": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "1.0.0-beta.33",
"@web-types/vue": "^2.5.0-3",
"archiver": "^3.0.0",
"axios-mock-adapter": "^1.18.1",
"babel-eslint": "^10.1.0",
"chalk": "^2.4.1",
"compression-webpack-plugin": "^3.1.0",
"cypress-vue-unit-test": "^1.11.7",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.1.6",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"ssh2": "^0.6.1",
"svg-sprite-loader": "^4.2.5",
"text-loader": "^0.0.1",
"typescript": "~3.8.3",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-cli-plugin-ssh": "github:hank-cp/vue-cli-plugin-ssh",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-theme-color-replacer": "^1.3.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}