-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1001 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
36
37
38
39
40
{
"name": "proofslip",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "tsx watch src/dev.ts",
"test": "vitest",
"test:unit": "vitest run tests/lib/ tests/routes/",
"test:smoke": "vitest run tests/smoke/",
"test:packages": "vitest run tests/packages/",
"test:all": "tsx scripts/test-all.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@neondatabase/serverless": "^1.0.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.8",
"nanoid": "^5.1.7"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}