-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 809 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "weightchallenge",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:frontend\"",
"dev:api": "wrangler dev src/index.ts --local --persist-to .wrangler/state",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm ci && npm run build",
"deploy": "npm run build && npx wrangler versions upload",
"db:migrate": "wrangler d1 execute weight-challenge-db --local --file=src/db/schema.sql",
"db:migrate:remote": "wrangler d1 execute weight-challenge-db --remote --file=src/db/schema.sql"
},
"dependencies": {
"hono": "^4.4.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240512.0",
"concurrently": "^8.2.2",
"wrangler": "^3.57.0"
}
}