-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.31 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
{
"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.10",
"@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.12.0",
"@sentry/browser": "^10.56.0",
"@sentry/react": "^10.56.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-devtools": "^5.101.0",
"@tanstack/react-virtual": "^3.14.2",
"axios": "^1.17.0",
"classnames": "^2.5.1",
"copy-to-clipboard": "^4.0.2",
"dayjs": "^1.11.21",
"fast-json-patch": "^3.1.1",
"format-thousands": "^2.0.0",
"immer": "^11.1.8",
"lodash": "^4.18.1",
"monaco-editor": "^0.55.1",
"pretty-bytes": "^7.1.0",
"react": "^19.2.7",
"react-animate-height": "^3.2.4",
"react-avatar-editor": "^15.1.0",
"react-dom": "^19.2.7",
"react-grid-layout": "^2.2.3",
"react-hotkeys-hook": "^5.3.2",
"react-markdown": "^10.1.0",
"react-modal": "^3.16.3",
"react-redux": "^9.3.0",
"react-resizable": "^4.0.1",
"react-router": "^7.17.0",
"react-toastify": "^11.1.0",
"react-tooltip": "^6.0.7",
"react-use-measure": "^2.1.7",
"redux": "^5.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.8.3",
"simple-icons": "^16.23.0",
"use-immer": "^0.11.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.3",
"@sentry/vite-plugin": "^5.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@stylistic/stylelint-config": "^5.0.0",
"@stylistic/stylelint-plugin": "^5.2.0",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/eslint-plugin-query": "^5.101.0",
"@types/format-thousands": "^2.0.3",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.24",
"@types/node": "^24.13.1",
"@types/react": "^19.2.17",
"@types/react-avatar-editor": "^13.0.4",
"@types/react-dom": "^19.2.3",
"@types/react-modal": "^3.16.3",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"dprint": "^0.54.0",
"eslint-plugin-better-tailwindcss": "^4.5.0",
"eslint-plugin-perfectionist": "5.8.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^4.3.0",
"typescript": "6.0.3",
"vite": "^8.0.16"
},
"scripts": {
"oxlint": "oxlint",
"oxlint:fix": "oxlint --fix",
"dprint": "dprint check",
"dprint:fix": "dprint fmt",
"stylelint": "stylelint \"src/css/*.css\"",
"tscheck": "tsc --noEmit",
"lint": "pnpm dprint && pnpm oxlint && 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"
}
}