-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"private": true,
"name": "cloudflare-pages-d1-demo",
"description": "R3mix of Willin.Wang",
"author": "Willin Wang <[email protected]> (https://willin.wang/)",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"start": "wrangler pages dev --compatibility-date=2023-08-15 ./public --d1=demo --local",
"typecheck": "tsc",
"db:schema": "drizzle-kit generate:sqlite --schema=./server/db/schema.ts --out=./migrations",
"db:init": "wrangler d1 migrations list demo",
"db:migration": "npx wrangler d1 migrations apply demo"
},
"dependencies": {
"@remix-run/cloudflare": "^2.0.0",
"@remix-run/cloudflare-pages": "^2.0.0",
"@remix-run/css-bundle": "^2.0.0",
"@remix-run/react": "^2.0.0",
"drizzle-orm": "^0.28.6",
"isbot": "^3.6.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.5.1",
"remix-auth-github": "^1.6.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230914.0",
"@remix-run/dev": "^2.0.0",
"@remix-run/eslint-config": "^2.0.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"drizzle-kit": "^0.19.13",
"eslint": "^8.49.0",
"typescript": "^5.2.2",
"wrangler": "^3.8.0"
},
"engines": {
"node": ">=18.0.0"
}
}