-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 KB
/
package.json
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
{
"name": "node-fastify-architecture",
"version": "1.0.0",
"engines": {
"node": "20.x"
},
"description": "",
"main": "./src/server.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=test node --test --require=dotenv/config test/",
"start": "NODE_ENV=development node --watch --require=dotenv/config src/server.js",
"start:prod": "NODE_ENV=production node --require=dotenv/config src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"close-with-grace": "^1.2.0",
"config": "^3.3.9",
"desm": "^1.3.0",
"dotenv": "^16.3.1",
"fastify": "^4.21.0",
"fastify-overview": "^3.3.2",
"fastify-overview-ui": "^2.2.1",
"fastify-plugin": "^4.5.1",
"jsonwebtoken": "^9.0.1",
"toml": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"pino-pretty": "^10.2.0"
}
}