-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
40
41
42
{
"name": "order_task",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"heroku-postbuild": "tsc -p ./tsconfig.json ",
"dev": "nodemon --exec npx ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"fastify": "^3.28.0",
"fastify-cors": "^6.0.3",
"fastify-helmet": "^7.0.1",
"fastify-multer": "^2.0.2",
"fastify-plugin": "^3.0.1",
"fastify-rate-limit": "^5.8.0",
"fastify-swagger": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"qrcode": "^1.5.0",
"sequelize": "^6.19.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.23",
"@types/qrcode": "^1.4.2",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
}
}