forked from B0und/WikiSpeedrun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.19 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.19 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
{
"name": "wikispeedrun",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.13.1",
"type": "module",
"scripts": {
"dev": "cross-env LAUNCH_EDITOR=cursor npm-run-all --parallel start typesafe-i18n",
"dev:withMocks": "cross-env-shell VITE_WITH_MOCKS=true pnpm run dev",
"start": "vite --open",
"viteBuild": "vite build",
"build": "npm-run-all --parallel typecheck lint viteBuild",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"typesafe-i18n": "typesafe-i18n",
"format": "biome format --write ./src",
"lint": "biome lint --fix && eslint --fix \"./src/**/*.{ts,tsx}\"",
"test:browser": "vitest"
},
"dependencies": {
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-hover-card": "1.0.7",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-portal": "1.0.4",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "1.0.7",
"@radix-ui/react-visually-hidden": "1.0.3",
"@tanstack/react-query": "5.38.0",
"@tanstack/react-router": "^1.121.2",
"@tanstack/react-router-devtools": "^1.121.2",
"canvas-confetti": "^1.9.3",
"clsx": "2.1.1",
"dompurify": "3.1.4",
"immer": "10.1.1",
"re-resizable": "6.9.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.0.13",
"react-feather": "2.0.10",
"react-hot-toast": "2.4.1",
"react-select": "5.8.0",
"tailwind-merge": "2.3.0",
"typesafe-i18n": "5.26.2",
"unbound-zustand-querystring": "0.2.3",
"use-local-storage": "3.0.0",
"zustand": "4.5.2"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@optimize-lodash/rollup-plugin": "^5.0.0",
"@tailwindcss/container-queries": "0.1.1",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@tanstack/react-query-devtools": "^5.38.0",
"@tanstack/router-cli": "^1.128.8",
"@tanstack/router-plugin": "^1.128.8",
"@total-typescript/ts-reset": "0.6.1",
"@tweakpane/core": "^2.0.5",
"@types/canvas-confetti": "^1.9.0",
"@types/dompurify": "3.0.5",
"@types/node": "^22.16.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/browser": "^3.2.4",
"autoprefixer": "10.4.19",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-compiler": "0.0.0-experimental-c8b3f72-20240517",
"eslint-plugin-react-hooks": "4.6.2",
"msw": "2.10.4",
"npm-run-all": "4.1.5",
"playwright": "^1.54.1",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"postcss-nesting": "12.1.5",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"rollup-plugin-visualizer": "5.12.0",
"tailwindcss": "3.4.3",
"tweakpane": "^4.0.5",
"type-fest": "4.18.3",
"typescript": "5.9.0-beta",
"vite": "6.3.5",
"vite-plugin-ejs": "1.7.0",
"vite-plugin-react-click-to-component": "4.0.0",
"vite-plugin-svgr": "4.3.0",
"vitest": "^3.2.4",
"vitest-browser-react": "^1.0.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}