forked from ShokoAnime/Shoko-WebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.87 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
118
119
{
"name": "shoko-webui",
"version": "2.1.0-dev.0",
"private": true,
"sideEffects": false,
"engines": {
"node": ">=6",
"npm": ">=3.8"
},
"dependencies": {
"@fontsource/sora": "^5.0.17",
"@headlessui/react": "^1.7.18",
"@headlessui/tailwindcss": "^0.2.0",
"@hello-pangea/dnd": "^16.5.0",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@microsoft/signalr": "^7.0.14",
"@reduxjs/toolkit": "^2.2.2",
"@sentry/browser": "^7.108.0",
"@sentry/react": "^7.108.0",
"@tanstack/react-query": "^5.28.6",
"@tanstack/react-query-devtools": "^5.28.6",
"@tanstack/react-virtual": "^3.2.0",
"axios": "^1.6.8",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.10",
"fast-json-patch": "^3.1.1",
"format-thousands": "^2.0.0",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"pretty-bytes": "^6.1.1",
"react": "^18.2.0",
"react-animate-height": "^3.2.3",
"react-avatar-editor": "^13.0.1",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.4.4",
"react-modal": "^3.16.1",
"react-redux": "^9.1.0",
"react-resizable": "^3.0.5",
"react-responsive": "^10.0.0",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"react-toastify": "^10.0.5",
"react-use-measure": "^2.1.1",
"redux": "^5.0.0",
"semver": "^7.6.0",
"simple-icons": "^11.9.0",
"use-immer": "^0.9.0",
"usehooks-ts": "^3.0.2"
},
"devDependencies": {
"@sentry/vite-plugin": "^2.16.0",
"@stylistic/stylelint-config": "^1.0.1",
"@stylistic/stylelint-plugin": "^2.1.0",
"@tanstack/eslint-plugin-query": "^5.28.6",
"@types/format-thousands": "^2.0.3",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-avatar-editor": "^13.0.2",
"@types/react-dom": "^18.2.22",
"@types/react-grid-layout": "^1.3.5",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.33",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"dprint": "^0.45.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-load-config": "^5.0.3",
"postcss-preset-env": "^9.5.2",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.1",
"tailwindcss-text-fill-stroke": "2.0.0-beta.1",
"typescript": "5.4.3",
"vite": "^5.2.3"
},
"scripts": {
"eslint": "eslint --cache --format=node_modules/eslint-formatter-pretty src",
"eslint:fix": "eslint --fix --cache --format=node_modules/eslint-formatter-pretty 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"
},
"lint-staged": {
"*.{ts,tsx}": [
"dprint fmt",
"eslint --cache --format=node_modules/eslint-formatter-pretty"
],
"*.css": "stylelint"
},
"packageManager": "[email protected]"
}