-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 916 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
{
"name": "notes-app-back-end",
"version": "1.0.0",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.21.0",
"eslint": "^9.21.0",
"eslint-config-dicodingacademy": "^0.9.4",
"globals": "^16.0.0",
"nodemon": "^3.1.7"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.772.0",
"@aws-sdk/s3-request-presigner": "^3.772.0",
"@hapi/hapi": "^21.3.10",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"amqplib": "^0.10.5",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"joi": "^17.13.3",
"nanoid": "^3.3.7",
"node-pg-migrate": "^7.9.0",
"pg": "^8.13.1",
"redis": "^4.7.0"
}
}