-
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) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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": "rainmail",
"version": "1.0.0",
"description": "雨天信箱 - The Raindrop Box (Node.js / Hono + Drizzle)",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"migrate": "tsx src/db/migrate.ts",
"gen-hash": "tsx src/scripts/gen-hash.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"better-sqlite3": "^11.8.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.4",
"hono": "^4.6.16",
"maxmind": "^5.0.6",
"nodemailer": "^6.9.16",
"nunjucks": "^3.2.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@types/nodemailer": "^6.4.17",
"@types/nunjucks": "^3.2.6",
"drizzle-kit": "^0.30.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20"
}
}