-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
97 lines (97 loc) · 3.32 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
{
"name": "maa-copilot-ui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:skiptsc": "vite build",
"build:azure": "yarn build:skiptsc && node post-build.mjs",
"preview": "vite preview",
"lint": "npm-run-all --parallel lint:check:eslint lint:check:prettier",
"lint:check:eslint": "eslint src/**/*",
"lint:check:prettier": "prettier --check src/**/*",
"lint:fix": "npm-run-all --parallel lint:fix:eslint lint:fix:prettier",
"lint:fix:eslint": "eslint --fix src/**/*",
"lint:fix:prettier": "prettier --write src/**/*",
"scripts:update": "yarn install && npm-run-all --parallel scripts:update-operators scripts:update-operator-avatars scripts:update-prof-icons",
"scripts:update-operators": "esno scripts/update-operators.ts",
"scripts:update-operator-avatars": "esno scripts/update-operator-avatars.ts",
"scripts:update-prof-icons": "yarn install && esno scripts/update-prof-icons.ts"
},
"dependencies": {
"@blueprintjs/core": "^4.15.1",
"@blueprintjs/popover2": "^1.12.1",
"@blueprintjs/select": "^4.8.18",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@iconify/icons-simple-icons": "^1.2.22",
"@iconify/react": "^3.2.2",
"@sentry/react": "^7.27.0",
"@sentry/tracing": "^7.27.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"ajv": "^8.11.0",
"ajv-i18n": "^4.2.0",
"camelcase-keys": "^8.0.1",
"clsx": "^1.2.0",
"dayjs": "^1.11.3",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fuse.js": "^6.6.2",
"jotai": "^2.7.0",
"linkify-react": "^3.0.4",
"linkifyjs": "^3.0.5",
"lodash-es": "^4.17.21",
"maa-copilot-client": "https://github.com/MaaAssistantArknights/maa-copilot-client-ts.git#0.1.0-SNAPSHOT.758.dbc2eb1",
"normalize.css": "^8.0.1",
"prettier": "^3.2.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-ga-neo": "^2.2.0",
"react-hook-form": "^7.33.1",
"react-markdown": "^8.0.5",
"react-rating": "^2.0.5",
"react-rnd": "^10.4.1",
"react-router-dom": "6",
"react-spring": "^9.4.5",
"react-use": "^17.4.0",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"snakecase-keys": "^5.4.4",
"swr": "^2.2.5",
"type-fest": "^4.10.2",
"unfetch": "^4.2.0",
"vite-tsconfig-paths": "^3.5.0"
},
"devDependencies": {
"@hookform/devtools": "^4.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.0.0",
"@types/pinyin": "^2.10.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"esno": "^4.0.0",
"less": "^4.1.2",
"node-fetch": "^3.2.6",
"npm-run-all2": "^6.0.2",
"pinyin": "^3.0.0-alpha.5",
"simplebig": "^0.0.3",
"tailwindcss": "^3.1.4",
"typescript": "^5.5.0",
"vite": "^4.2.1"
},
"resolutions": {
"react-rating/@types/react": "^18.0.0"
}
}