-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
{
"name": "car-booking-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/melitus/car-booking-api.git",
"author": "melitus <asmelitus@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon ./src/server/index.js",
"dev:debug": "nodemon --inspect src/server/server.js",
"start": "nodemon src/server/index.js"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.32",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sucrase": "^3.16.0",
"winston": "^3.3.3"
},
"keywords": [
"nodejs",
"express",
"sequelize",
"rest",
"api",
"postgresql"
],
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.0"
}
}