-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 845 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
{
"name": "veille",
"version": "0.1.0",
"description": "Veille dev + pipeline de curation Project Deuwi. Cloudflare Workers + Hono + D1.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:migrate:local": "wrangler d1 migrations apply veille --local",
"db:migrate": "wrangler d1 migrations apply veille --remote",
"db:seed:local": "wrangler d1 execute veille --local --file=./migrations/0002_seed_sources.sql",
"db:seed": "wrangler d1 execute veille --remote --file=./migrations/0002_seed_sources.sql",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"hono": "^4.6.14",
"fast-xml-parser": "^4.5.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250109.0",
"typescript": "^5.7.3",
"wrangler": "^3.101.0"
}
}