forked from B0und/WikiSpeedrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.82 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
{
"name": "wikispeedrun",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel start typesafe-i18n",
"dev:withMocks": "cross-env-shell VITE_WITH_MOCKS=true npm-run-all --parallel start typesafe-i18n",
"start": "vite --open",
"build": "pnpm typecheck && pnpm lint && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"typesafe-i18n": "typesafe-i18n",
"prettify": "prettier --write ./src",
"lint": "eslint --fix ./src"
},
"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-tooltip": "1.0.7",
"@radix-ui/react-visually-hidden": "1.0.3",
"@tanstack/react-query": "5.38.0",
"@tanstack/react-query-devtools": "5.38.0",
"clsx": "2.1.1",
"dompurify": "3.1.4",
"immer": "10.1.1",
"re-resizable": "6.9.16",
"react": "18.3.1",
"react-confetti-explosion": "2.1.2",
"react-dom": "18.3.1",
"react-error-boundary": "4.0.13",
"react-feather": "2.0.10",
"react-hot-toast": "2.4.1",
"react-router": "6.23.1",
"react-router-dom": "6.23.1",
"react-select": "5.8.0",
"tailwind-merge": "2.3.0",
"typesafe-i18n": "5.26.2",
"use-local-storage": "3.0.0",
"zustand": "4.5.2",
"zustand-querystring": "0.0.19"
},
"devDependencies": {
"@tailwindcss/container-queries": "0.1.1",
"@tanstack/eslint-plugin-query": "5.35.6",
"@total-typescript/ts-reset": "0.5.1",
"@types/dompurify": "3.0.5",
"@types/node": "20.12.12",
"@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-swc": "3.7.0",
"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.3.0",
"npm-run-all": "4.1.5",
"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",
"type-fest": "4.18.3",
"typescript": "5.4.5",
"vite": "5.2.11",
"vite-plugin-ejs": "1.7.0",
"vite-plugin-svgr": "4.2.0"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindConfig": "./tailwind.config.cjs",
"singleQuote": false,
"arrowParens": "always",
"tabWidth": 2,
"useTabs": false,
"printWidth": 100,
"trailingComma": "es5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}