-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "d1-northwind",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"cf-typegen": "wrangler types",
"deploy": "npm run build && wrangler deploy",
"dev": "react-router dev",
"preview": "npm run build && vite preview",
"typecheck": "npm run cf-typegen && react-router typegen && tsc -b",
"local:init": "wrangler d1 execute northwind --file=./db/schema.sql --local",
"local:load": "wrangler d1 execute northwind --file=./db/data.sql --local",
"remote:new": "wrangler d1 create northwind",
"remote:init": "wrangler d1 execute northwind --remote --file=./db/schema.sql",
"remote:load": "wrangler d1 execute northwind --remote --file=./db/data-big.sql"
},
"dependencies": {
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.5.0",
"react-router-dom": "^7.5.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.0.3",
"@cloudflare/workers-types": "^4.20250409.0",
"@react-router/dev": "^7.5.0",
"@tailwindcss/vite": "^4.1.3",
"@types/node": "^20",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"tailwindcss": "^4.1.3",
"typescript": "^5.7.2",
"vite": "^6.2.6",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.9.1"
}
}