-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "find-types",
"version": "4.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"check": "biome check .",
"dev": "remix vite:dev",
"e2e": "playwright test",
"fix": "biome check --apply --no-errors-on-unmatched .",
"lint-staged": "lint-staged",
"prepare": "husky",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},
"lint-staged": {
"*.{js,ts,tsx,json,md,html,yml,yaml}": ["biome check --no-errors-on-unmatched --apply"]
},
"dependencies": {
"@mantine/hooks": "^7.10.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@tanstack/react-query": "^5.40.0",
"@vercel/remix": "^2.9.2",
"dompurify": "^3.1.4",
"downshift": "7.2.1",
"hosted-git-info": "^7.0.2",
"isbot": "^5.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-utils": "^7.6.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.2",
"@playwright/test": "^1.44.1",
"@remix-run/dev": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@tanstack/react-query-devtools": "^5.40.0",
"@types/dompurify": "^3.0.5",
"@types/hosted-git-info": "^3.0.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"msw": "^2.3.0",
"playwright-msw": "^3.0.1",
"postcss": "^8.4.38",
"remix-flat-routes": "^0.6.5",
"tailwindcss": "^3.4.3",
"type-fest": "^4.18.3",
"typescript": "~5.4.5",
"vite": "^5.2.12",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}