-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 960 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": "be-music",
"version": "1.0.0",
"description": "music api",
"main": "index.js",
"scripts": {
"start-prod": "NODE_ENV=production node ./src/server.js",
"start-dev": "nodemon ./src/server.js",
"lint": "eslint ./src",
"migrate": "node-pg-migrate",
"jwt-key-gen": "node ./src/jwt-generator.js"
},
"keywords": [],
"author": "mfdsix",
"license": "ISC",
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1"
},
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"amqplib": "^0.10.3",
"auto-bind": "^4.0.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"joi": "^17.9.2",
"nanoid": "^3.3.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.1",
"redis": "^4.6.7"
}
}