-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "remix-cf-workers",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"deploy": "wrangler deploy",
"dev": "react-router dev",
"start": "wrangler dev",
"typegen": "wrangler types",
"lint": "biome lint .",
"format": "prettier --check .",
"typecheck": "tsc",
"validate": "pnpm run lint && pnpm run format && pnpm run typecheck"
},
"dependencies": {
"@react-router/cloudflare": "7.0.0-pre.1",
"isbot": "^5.1.17",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "7.0.0-pre.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@cloudflare/workers-types": "^4.20241011.0",
"@react-router/dev": "7.0.0-pre.1",
"@react-router/fs-routes": "7.0.0-pre.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "^3.80.4"
},
"engines": {
"node": ">=20.0.0"
}
}