-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
116 lines (116 loc) · 3.7 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
{
"name": "shoko-webui",
"version": "2.2.0-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.5.0",
"@sentry/browser": "^8.46.0",
"@sentry/react": "^8.46.0",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-query-devtools": "^5.62.7",
"@tanstack/react-virtual": "^3.11.2",
"axios": "^1.7.9",
"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.2",
"pretty-bytes": "^6.1.1",
"react": "^19.0.0",
"react-animate-height": "^3.2.3",
"react-avatar-editor": "^13.0.2",
"react-dom": "^19.0.0",
"react-grid-layout": "^1.5.0",
"react-modal": "^3.16.3",
"react-redux": "^9.2.0",
"react-resizable": "^3.0.5",
"react-responsive": "^10.0.0",
"react-router": "^7.0.2",
"react-toastify": "^11.0.0",
"react-tooltip": "^5.28.0",
"react-use-measure": "^2.1.1",
"redux": "^5.0.1",
"semver": "^7.6.3",
"simple-icons": "^13.21.0",
"use-immer": "^0.10.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@sentry/vite-plugin": "^2.22.7",
"@stylistic/stylelint-config": "^2.0.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@types/format-thousands": "^2.0.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^19.0.2",
"@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.4",
"cross-env": "^7.0.3",
"dprint": "^0.47.6",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"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.16",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-preset-env": "^10.1.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.16",
"tailwindcss-text-fill-stroke": "2.0.0-beta.1",
"typescript": "5.6.3",
"vite": "^6.0.3",
"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"
}
}