-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "notes-app-back-end",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start-prod": "NODE_ENV=production node ./src/server.js",
"start-dev": "nodemon ./src/server.js",
"lint": "eslint ./src",
"migrate": "node-pg-migrate"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.498.0",
"@aws-sdk/s3-request-presigner": "^3.498.0",
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/jwt": "^3.2.0",
"amqplib": "^0.10.3",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"joi": "^17.11.0",
"nanoid": "^3.3.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3",
"redis": "^4.6.12"
}
}