-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 972 Bytes
/
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
{
"name": "fastify-api",
"version": "1.0.0",
"description": "API",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=development nodemon app.js",
"latest": "knex migrate:latest --knexfile=config/knexfile",
"seed": "knex seed:run --knexfile=config/knexfile"
},
"keywords": [],
"author": "Yuri Fontella",
"license": "ISC",
"dependencies": {
"@fastify/auth": "^4.6.1",
"@fastify/autoload": "^5.8.0",
"@fastify/compress": "^7.0.3",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^8.0.0",
"@fastify/multipart": "^8.2.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.3",
"bcrypt": "^5.1.1",
"fastify": "^4.26.2",
"fastify-cli": "^6.1.1",
"fastify-guard": "^2.0.0",
"fastify-nodemailer": "^5.0.0",
"fastify-plugin": "^4.5.1",
"knex": "^3.1.0",
"pg": "^8.11.5",
"socket.io": "^4.7.5"
}
}