-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.45 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.45 KB
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": "shoko-webui",
"version": "2.6.0-dev",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=22",
"npm": ">=3.8"
},
"dependencies": {
"@fontsource/sora": "^5.2.8",
"@headlessui/react": "^2.2.9",
"@hello-pangea/dnd": "^18.0.1",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@microsoft/signalr": "^10.0.0",
"@monaco-editor/react": "4.8.0-rc.3",
"@reduxjs/toolkit": "^2.11.2",
"@sentry/browser": "^10.46.0",
"@sentry/react": "^10.46.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"@tanstack/react-virtual": "^3.13.23",
"axios": "^1.13.6",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.20",
"fast-json-patch": "^3.1.1",
"format-thousands": "^2.0.0",
"immer": "^11.1.4",
"lodash": "^4.17.23",
"monaco-editor": "^0.55.1",
"pretty-bytes": "^7.1.0",
"react": "^19.2.4",
"react-animate-height": "^3.2.3",
"react-avatar-editor": "^15.1.0",
"react-dom": "^19.2.4",
"react-grid-layout": "^2.2.3",
"react-hotkeys-hook": "^5.2.4",
"react-markdown": "^10.1.0",
"react-modal": "^3.16.3",
"react-redux": "^9.2.0",
"react-resizable": "^3.1.3",
"react-responsive": "^10.0.1",
"react-router": "^7.13.2",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.30.0",
"react-use-measure": "^2.1.7",
"redux": "^5.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.4",
"simple-icons": "^16.13.0",
"use-immer": "^0.11.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@rolldown/plugin-babel": "^0.2.2",
"@sentry/vite-plugin": "^5.1.1",
"@stylistic/stylelint-config": "^4.0.0",
"@stylistic/stylelint-plugin": "^5.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/eslint-plugin-query": "^5.95.2",
"@types/format-thousands": "^2.0.3",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-avatar-editor": "^13.0.4",
"@types/react-dom": "^19.2.3",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.34",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"dprint": "^0.53.1",
"eslint": "^9.39.4",
"eslint-config-airbnb-extended": "^3.0.1",
"eslint-plugin-better-tailwindcss": "^4.3.2",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^4.2.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vite": "^8.0.3"
},
"scripts": {
"eslint": "eslint 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"
}
}