-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 822 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 822 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
{
"name": "node-fastify",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/jwt": "^10.0.0",
"@fastify/multipart": "^9.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"aws-sdk": "^2.1693.0",
"bcrypt": "^6.0.0",
"csv-parser": "^3.2.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"fast-csv": "^5.0.5",
"fastify": "^5.6.2",
"nodemon": "^3.1.11",
"pg": "^8.16.3",
"pino-pretty": "^13.1.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"drizzle-kit": "^0.31.8"
}
}