-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
{
"name": "node-server-template",
"version": "1.0.0",
"description": "Starting template for a TypeScript NodeJS server",
"type": "module",
"scripts": {
"clear": "rm -rf dist",
"compile": "npm run clear && tsc",
"lintCheck": "eslint",
"lintFix": "eslint --fix",
"formatCheck": "prettier ./* -c",
"formatFix": "prettier ./* -w",
"startDb": "docker compose up -d",
"stopDb": "docker compose down",
"restartDb": "docker compose restart",
"migrate": "node-pg-migrate",
"start": "tsc-watch --onSuccess \"node ./dist/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylemartin120/node-server-template.git"
},
"author": "Kyle Martin",
"license": "ISC",
"bugs": {
"url": "https://github.com/kylemartin120/node-server-template/issues"
},
"homepage": "https://github.com/kylemartin120/node-server-template#readme",
"devDependencies": {
"@types/express": "5.0.5",
"@types/node": "24.10.0",
"@types/pg": "8.15.6",
"concurrently": "9.2.1",
"dotenv": "17.2.3",
"eslint": "9.39.1",
"jiti": "2.6.1",
"node-pg-migrate": "8.0.3",
"prettier": "3.6.2",
"tsc-watch": "7.2.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3"
},
"dependencies": {
"express": "5.1.0",
"pg": "8.16.3",
"uuid": "13.0.0",
"zod": "4.1.12"
}
}