-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 764 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 764 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
{
"name": "nodejs-ts-config-pattern",
"version": "1.0.0",
"description": "A lightweight, type-safe configuration pattern for Node.js using Zod",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx src/server.ts",
"test": "NODE_ENV=test vitest run",
"typecheck": "tsc --noEmit",
"start": "NODE_ENV=production PORT=8080 DATABASE_HOST=db.example.com DATABASE_NAME=app DATABASE_USER=app DATABASE_PASSWORD=CHANGE_ME tsx src/server.ts"
},
"dependencies": {
"fastify": "^5.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"pino-pretty": "^13.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"volta": {
"node": "22.22.1"
}
}