-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.23 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
41
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"deploy": "wrangler d1 migrations apply mydb && remix build && wrangler pages dev ./public",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development pnpm run wrangler:page",
"dev": "remix build && run-p \"dev:*\"",
"start": "cross-env NODE_ENV=production pnpm run wrangler",
"typecheck": "tsc -b",
"migration": "./scripts/migration.sh",
"wrangler:page": "wrangler pages dev ./public --local --persist --port 3000"
},
"dependencies": {
"@remix-run/cloudflare": "^1.10.1",
"@remix-run/cloudflare-pages": "^1.10.1",
"@remix-run/react": "^1.10.1",
"better-sqlite3": "^8.0.1",
"cross-env": "^7.0.3",
"kysely": "^0.23.3",
"kysely-d1": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "^1.10.1",
"@remix-run/eslint-config": "^1.10.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "^8.27.0",
"kysely-codegen": "^0.9.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.8.4",
"wrangler": "^2.2.1"
},
"engines": {
"node": ">=16.13"
}
}