-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 960 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 960 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
{
"name": "fastify-template-postgres",
"version": "1.0.0",
"type": "commonjs",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"local": "env $(cat ./env/local.env) ",
"migrate": "node-pg-migrate",
"start": "docker-compose -f compose/base.yml -f compose/dev.yml up --build --remove-orphans",
"stop": "docker-compose -f compose/base.yml -f compose/dev.yml down --rmi=local --volumes",
"start:dev": "npm run local nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ligerzero (liger@ligerzerogaming.com)",
"license": "MIT",
"description": "Fastify HTTP server template with Postgresql integration",
"dependencies": {
"fastify": "^5.4.0",
"node-pg-migrate": "^8.0.4",
"pg": "^8.7.1",
"pino": "^9.7.0",
"pino-pretty": "^13.1.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0"
}
}