forked from yuchanns/warpflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 872 Bytes
/
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
32
{
"name": "warpflare",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"optimize": "node scripts/gen_entrypoints.js && wrangler d1 execute warp-db --file=./ip.sql",
"test": "jest --verbose"
},
"dependencies": {
"@hono/zod-validator": "^0.2.0",
"@stablelib/x25519": "^1.0.3",
"drizzle-orm": "^0.29.5",
"hono": "^4.0.10",
"mmdb-reader": "^1.2.0",
"yaml": "^2.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240222.0",
"@types/jest": "^29.5.12",
"esbuild": "^0.20.1",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"jest-environment-miniflare": "^2.14.2",
"miniflare": "^3.20240223.1",
"ts-node": "^10.9.2",
"uuid": "^9.0.1",
"wrangler": "^3.31.0"
}
}