-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "gost-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"analyzer": "tsc && vite build --mode=analyzer",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"init": "npm run init:monaco && npm run init:i18n",
"init:i18n": "node ./script/language.js",
"init:monaco": "cpx ./node_modules/monaco-editor/min/** ./public/monaco-editor/min",
"predev": "npm run init",
"prebuild": "npm run init:i18n",
"preanalyzer": "npm run init:i18n"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"antd": "^5.11.0",
"axios": "^1.6.0",
"classnames": "^2.5.1",
"events": "^3.3.0",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"idb": "^7.1.1",
"idb-open-plus": "^1.0.0",
"jsonc-parser": "^3.2.0",
"monaco-editor": "^0.39.0",
"npm": "^10.2.3",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/events": "^3.0.3",
"@types/qs": "^6.9.10",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"cpx2": "^7.0.1",
"csv-parse": "^5.5.6",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"less": "^4.2.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-bundle-analyzer": "^0.9.2"
}
}