-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 816 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 816 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
29
30
31
32
33
34
35
{
"name": "token-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"fmt": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^25.0.3",
"drizzle-kit": "^0.31.8",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.1",
"postgres": "^3.4.7",
"zod": "^4.2.1"
}
}