-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 996 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
36
37
38
{
"name": "nodejs-json-converter",
"version": "1.0.0",
"scripts": {
"dev:auth": "nodemon auth/server.js",
"dev:converter": "nodemon converter/server.js",
"start:auth": "node auth/server.js",
"start:converter": "node converter/server.js"
},
"keywords": [],
"author": "Better Stack Community",
"license": "ISC",
"description": "",
"type": "module",
"dependencies": {
"@fastify/compress": "^8.0.1",
"@fastify/cookie": "^10.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/reply-from": "^11.0.1",
"@fastify/static": "^8.0.1",
"@fastify/view": "^10.0.1",
"env-schema": "^6.0.0",
"fastify": "^5.0.0",
"fastify-graceful-shutdown": "^4.0.1",
"fastify-plugin": "^5.0.1",
"pg": "^8.13.0",
"pino": "^9.4.0",
"pug": "^3.0.3",
"redis": "^4.7.0",
"sequelize": "^6.37.3",
"yaml": "^2.5.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}