-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 905 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 905 Bytes
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
{
"name": "commitment",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "npm run build && wrangler deploy",
"build": "esbuild src/page/index.ts --bundle --sourcemap --outfile=page/index.js",
"watch": "esbuild src/page/index.ts --bundle --sourcemap --watch --outfile=page/index.js",
"dev": "concurrently \"npm run watch\" \"wrangler dev\"",
"dev-back": "wrangler dev",
"cf-typegen": "wrangler types",
"export-remote": "wrangler d1 export gatos --remote --output=./database.sql",
"export-local": "wrangler d1 export gatos --output=./database.sql",
"import-remote": "wrangler d1 execute gatos --remote --file=./database.sql"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.19",
"concurrently": "^9.2.1",
"esbuild": "^0.25.11",
"typescript": "^5.5.2",
"vitest": "~3.2.0",
"wrangler": "^4.45.2"
},
"dependencies": {
"rampike": "^0.0.8"
}
}