This repository was archived by the owner on Apr 10, 2023. It is now read-only.
forked from arkntools/arknights-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.77 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
100
{
"name": "arknights-toolbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "cross-env NODE_ENV=production vue-cli-service lint",
"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": {
"@arkntools/depot-recognition": "^1.0.0-rc.9",
"@baiducloud/sdk": "1.0.0-rc.25",
"@johmun/vue-tags-input": "^2.1.0",
"@yzfe/darkmodejs": "^1.2.1",
"core-js": "^3.10.2",
"express": "^4.17.1",
"form-data": "^4.0.0",
"http-proxy-middleware": "^1.2.0",
"javascript-lp-solver": "^0.4.24",
"js-base64": "^3.6.0",
"lodash": "^4.17.21",
"lodash.combinations": "^18.10.0",
"md5": "^2.3.0",
"mdui": "^0.4.3",
"multer": "^1.4.2",
"pinyin-pro": "^3.1.0",
"register-service-worker": "^1.7.2",
"utf8-buffer-size": "0.0.4",
"vue": "^2.6.12",
"vue-gtag": "^1.14.0",
"vue-i18n": "^8.24.3",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.5.1"
},
"devDependencies": {
"@actions/core": "^1.2.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-pwa": "^4.5.12",
"@vue/cli-plugin-router": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"arkntools-scripts": "^1.0.2",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"base-x": "^3.0.8",
"cache-loader": "^4.1.0",
"cheerio": "^1.0.0-rc.6",
"comlink-loader": "^2.0.0",
"cross-env": "^7.0.3",
"css": "^3.0.0",
"css-loader": "^5.2.4",
"dateformat": "^4.5.1",
"eslint": "^7.24.0",
"eslint-plugin-vue": "^7.9.0",
"fs-extra": "^9.1.0",
"lint-staged": "^10.5.4",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"simple-romaji-kana": "^2.4.2",
"uuid": "^8.3.2",
"vue-cli-plugin-i18n": "^2.1.0",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"cross-env NODE_ENV=production vue-cli-service lint",
"git add"
],
"*.d.ts": [
"prettier --write",
"git add"
],
"src/locales/*/_.json": [
"prettier --write",
"git add"
],
"src/data/{changelog,contributors}.json": [
"prettier --write",
"git add"
]
}
}