forked from arkntools/arknights-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
{
"name": "arknights-toolbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build": "vue-cli-service build && node tools/afterBuild.js",
"update-data": "node ./tools/update.js",
"update-data:cdn": "cross-env UPDATE_SOURCE=cdn node ./tools/update.js",
"update-data:local": "cross-env UPDATE_SOURCE=local node ./tools/update.js"
},
"dependencies": {
"@johmun/vue-tags-input": "^2.1.0",
"@yzfe/darkmodejs": "^1.2.1",
"core-js": "^3.6.5",
"javascript-lp-solver": "^0.4.24",
"js-base64": "^2.6.2",
"lodash": "^4.17.15",
"lodash.combinations": "^18.10.0",
"md5": "^2.2.1",
"mdui": "^0.4.3",
"register-service-worker": "^1.7.1",
"utf8-buffer-size": "0.0.4",
"vue": "^2.6.11",
"vue-i18n": "^8.18.2",
"vue-lazyload": "^1.3.3",
"vue-router": "^3.3.4"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-plugin-router": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"cache-loader": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dateformat": "^3.0.3",
"eslint": "^7.4.0",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^9.0.1",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"nodejieba": "^2.4.1",
"pinyin": "^2.9.1",
"prettier": "^2.0.5",
"sass-loader": "^9.0.2",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"prettier --write",
"git add"
]
}
}