forked from ShokoAnime/Shoko-WebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.74 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
110
111
112
113
114
115
116
117
{
"name": "shoko-webui",
"version": "2.1.3-dev",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"@fontsource/sora": "^5.1.0",
"@headlessui/react": "^2.2.0",
"@headlessui/tailwindcss": "^0.2.1",
"@hello-pangea/dnd": "^17.0.0",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@microsoft/signalr": "^8.0.7",
"@monaco-editor/react": "^4.6.0",
"@reduxjs/toolkit": "^2.3.0",
"@sentry/browser": "^8.36.0",
"@sentry/react": "^8.36.0",
"@tanstack/react-query": "^5.59.19",
"@tanstack/react-query-devtools": "^5.59.19",
"@tanstack/react-virtual": "^3.10.8",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.13",
"fast-json-patch": "^3.1.1",
"format-thousands": "^2.0.0",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.52.0",
"pretty-bytes": "^6.1.1",
"react": "^18.3.1",
"react-animate-height": "^3.2.3",
"react-avatar-editor": "^13.0.2",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.5.0",
"react-modal": "^3.16.1",
"react-redux": "^9.1.2",
"react-resizable": "^3.0.5",
"react-responsive": "^10.0.0",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.28.0",
"react-use-measure": "^2.1.1",
"redux": "^5.0.1",
"semver": "^7.6.3",
"simple-icons": "^13.16.0",
"use-immer": "^0.10.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@sentry/vite-plugin": "^2.22.6",
"@stylistic/stylelint-config": "^2.0.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@types/format-thousands": "^2.0.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^18.3.1",
"@types/react-grid-layout": "^1.3.5",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.34",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"cross-env": "^7.0.3",
"dprint": "^0.47.5",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-preset-env": "^10.0.9",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.14",
"tailwindcss-text-fill-stroke": "2.0.0-beta.1",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vite-plugin-webpackchunkname": "^1.0.3"
},
"scripts": {
"eslint": "eslint --cache src",
"eslint:fix": "eslint --fix --cache src",
"dprint": "dprint check",
"dprint:fix": "dprint fmt",
"stylelint": "stylelint \"src/css/*.css\"",
"tscheck": "tsc --noEmit",
"lint": "pnpm tscheck && pnpm dprint && pnpm eslint && pnpm stylelint",
"build": "cross-env NODE_ENV=production vite build",
"build:debug": "cross-env NODE_ENV=development vite build",
"start": "cross-env NODE_ENV=development vite",
"prepare": "husky"
},
"volta": {
"node": "22.11.0"
}
}