-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.02 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
{
"name": "cf-worker-template",
"version": "1.0.0",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/node": "^18.15.3",
"glob": "^9.3.0",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"wrangler": "^3.9.0"
},
"private": true,
"scripts": {
"start": "wrangler dev --remote",
"deploy": "wrangler deploy",
"build": "webpack --progress --mode none && npm run db:migrate",
"db:migrate": "wrangler d1 migrations apply template-worker-db",
"db:tables": "wrangler d1 execute template-worker-db --command \"SELECT name FROM sqlite_schema WHERE type ='table'\""
},
"dependencies": {
"@schiacciata/cf-workers-auth": "github:schiacciata/cf-workers-auth",
"@schiacciata/cf-workers-storage": "github:schiacciata/cf-workers-storage",
"@schiacciata/logger": "github:schiacciata/logger",
"kysely": "^0.26.3",
"kysely-d1": "^0.3.0",
"zod": "^3.22.2"
}
}