-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "tpl-remix-vite",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"preview": "pnpm run build && wrangler pages dev",
"start": "wrangler pages dev ./build/client"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@remix-run/cloudflare": "^2.15.1",
"@remix-run/cloudflare-pages": "^2.15.1",
"@remix-run/react": "^2.15.1",
"isbot": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"restyle": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@eslint-react/eslint-plugin": "^1.21.0",
"@remix-run/dev": "^2.15.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^3.99.0"
},
"engines": {
"node": ">=20.0.0"
}
}