-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 857 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
{
"name": "openmusicapi3",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"demon": "nodemon ./src/server.js",
"start": "nodemon ./src/server.js",
"migrate": "node-pg-migrate"
},
"type": "module",
"author": "",
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"amqplib": "^0.10.3",
"auto-bind": "^5.0.1",
"aws-sdk": "^2.1416.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"
},
"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"
}
}