forked from arkntools/arknights-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.05 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
101
102
103
104
105
106
107
108
109
{
"name": "arknights-toolbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve:dist": "serve dist",
"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.6.1",
"@johmun/vue-tags-input": "^2.1.0",
"@yzfe/darkmodejs": "^1.2.1",
"browser-image-resizer": "^2.4.1",
"comlink": "^4.3.1",
"core-js": "^3.26.1",
"encoding-japanese": "^2.0.0",
"eventemitter3": "^4.0.7",
"idb-keyval": "^6.2.0",
"javascript-lp-solver": "^0.4.24",
"js-base64": "^3.7.2",
"js-md5": "^0.7.3",
"kuroshiro": "^1.2.0",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"lodash": "^4.17.21",
"lodash.combinations": "^18.11.1",
"mdui": "^0.4.3",
"pinyin-pro": "^3.11.0",
"register-service-worker": "^1.7.2",
"smoothscroll-polyfill": "^0.4.4",
"utf8-buffer-size": "0.0.4",
"vue": "^2.7.13",
"vue-easy-dnd": "^1.22.0",
"vue-gtag": "^1.16.1",
"vue-i18n": "^8.27.2",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@types/lodash": "^4.14.189",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-eslint": "^4.5.19",
"@vue/cli-plugin-pwa": "^4.5.19",
"@vue/cli-plugin-router": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"arkntools-scripts": "^1.0.2",
"axios": "^1.3.3",
"babel-eslint": "^10.1.0",
"base-x": "^3.0.9",
"cache-loader": "^4.1.0",
"cheerio": "^1.0.0-rc.12",
"comlink-loader": "^2.0.0",
"cross-env": "^7.0.3",
"css": "^3.0.0",
"css-loader": "^5.2.7",
"dateformat": "^4.6.3",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.7.1",
"fs-extra": "^11.1.0",
"jszip": "^3.10.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sass": "^1.58.1",
"sass-loader": "^10.4.1",
"serve": "^14.2.0",
"sharp": "^0.31.3",
"tesseract.js": "^3.0.3",
"transliteration": "^2.3.5",
"uuid": "^9.0.0",
"vue-cli-plugin-i18n": "^2.3.1",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.7.13",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.8.0"
},
"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"
]
}
}