-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 905 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 905 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
{
"name": "express-postgres-starter",
"version": "0.1.0",
"private": true,
"description": "Express + PostgreSQL starter with pg-safe-migrate",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"db:up": "pg-safe-migrate up",
"db:down": "pg-safe-migrate down",
"db:status": "pg-safe-migrate status",
"db:lint": "pg-safe-migrate lint",
"db:check": "pg-safe-migrate check",
"db:create": "pg-safe-migrate create",
"test": "vitest run"
},
"dependencies": {
"express": "^4.21.0",
"pg": "^8.12.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/pg": "^8.11.0",
"pg-safe-migrate": "^0.1.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}