forked from cloudflare/workers-for-platforms-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 707 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 707 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
28
{
"name": "workers-for-platforms-example-project",
"version": "1.0.0",
"license": "Apache-2.0",
"engines": {
"node": "<20"
},
"devDependencies": {
"@cloudflare/d1": "^1.4.1",
"@cloudflare/workers-types": "^4.20240329.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"better-sqlite3": "^7.6.2",
"eslint": "^8.23.1",
"typescript": "^4.8.3",
"wrangler": "^3.42.0"
},
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler publish",
"lint": "npx eslint ./src",
"format": "npx prettier --write '**/*.{ts,js,cjs,json}'"
},
"dependencies": {
"hono": "^4.2.1",
"workers-qb": "^0.1.1"
}
}