-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
103 lines (103 loc) · 2.87 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
{
"name": "arknights-toolbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve:dist": "serve dist",
"build": "vue-cli-service build",
"build:lt-node-16": "cross-env NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"lint": "cross-env NODE_ENV=production vue-cli-service lint"
},
"dependencies": {
"@arkntools/depot-recognition": "^1.8.1",
"@arkntools/paddlejs-ocr": "^2.0.0",
"@johmun/vue-tags-input": "^2.1.0",
"@yzfe/darkmodejs": "^1.2.1",
"browser-image-resizer": "^2.4.1",
"comlink": "^4.4.1",
"core-js": "^3.37.1",
"dayjs": "^1.11.11",
"encoding-japanese": "^2.2.0",
"eventemitter3": "^5.0.1",
"idb-keyval": "^6.2.1",
"javascript-lp-solver": "^0.4.24",
"js-base64": "^3.7.7",
"js-md5": "^0.8.3",
"localforage": "^1.10.0",
"localforage-getitems": "^1.4.2",
"localforage-removeitems": "^1.4.0",
"localforage-setitems": "^1.4.0",
"lodash": "^4.17.21",
"lodash.combinations": "^18.11.1",
"mdui": "^0.4.3",
"pinia": "^2.1.7",
"register-service-worker": "^1.7.2",
"smoothscroll-polyfill": "^0.4.4",
"utf8-buffer-size": "0.0.4",
"vue": "^2.7.16",
"vue-easy-dnd": "^1.22.0",
"vue-gtag": "^1.16.1",
"vue-i18n": "^8.28.2",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^3.6.5",
"vue2-datepicker": "^3.11.1",
"vue2-teleport": "^1.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@types/lodash": "^4.17.6",
"@types/vue2-datepicker": "^3.3.6",
"@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",
"babel-eslint": "^10.1.0",
"base-x": "^3.0.10",
"comlink-loader": "^2.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"dateformat": "^4.6.3",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.7.1",
"lint-staged": "^14.0.1",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"sass-loader": "^10.5.2",
"serve": "^14.2.3",
"tesseract.js": "^3.0.3",
"uuid": "^9.0.1",
"vue-cli-plugin-i18n": "^2.3.2",
"vue-loader": "^15.11.1",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^4.10.2"
},
"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"
]
}
}