-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 912 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
{
"name": "open-music-rj",
"version": "1.0.0",
"description": "",
"scripts": {
"start-prod": "NODE_ENV=production node ./src/server.js",
"start-dev": "nodemon ./src/server.js",
"lint": "eslint ./src",
"migrate": "node-pg-migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.12"
},
"dependencies": {
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^6.0.5",
"@hapi/jwt": "^2.1.1",
"amqplib": "^0.8.0",
"auto-bind": "^4.0.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"joi": "^17.4.2",
"nanoid": "^3.1.23",
"node-pg-migrate": "^5.10.0",
"pg": "^8.7.3",
"redis": "^4.1.0"
}
}