-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
32
33
34
35
{
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"migrate": "wrangler d1 migrations apply db-name",
"migrate:local": "wrangler d1 migrations apply db-name --local"
},
"dependencies": {
"@hono/trpc-server": "^0.1.0",
"@trpc/server": "^10.44.1",
"drizzle-orm": "^0.29.1",
"hono": "^3.10.2",
"inversify": "^6.0.2",
"postgres": "^3.4.3",
"reflect-metadata": "^0.2.1",
"shallow-equal": "^3.1.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230914.0",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"drizzle-kit": "^0.20.6",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"wrangler": "^3.15.0"
}
}