-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 KB
/
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
39
40
41
{
"name": "food-delivery-app",
"version": "1.0.0",
"description": "A restful api for browsing restaurant menus",
"main": "app.js",
"author": "narh",
"license": "MIT",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.2.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1",
"sequelize-cli": "^6.6.1",
"validator": "^13.9.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"babel-register": "^6.26.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.22"
}
}