-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"engine": {
"node": "11.10.0"
},
"repository": "git@github.com:devamaz/DruveBackend.git",
"author": "devamaz <ahmad.abdulaziz37@gmail.com>",
"scripts": {
"start": "node -r esm ./index.js",
"dev": "nodemon -r esm ./index.js"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.1.0",
"esm": "^3.2.25",
"express": "4.16.4",
"express-jwt": "^5.3.3",
"express-mongo-sanitize": "^1.3.2",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"node-geocoder": "^3.24.0",
"nodemailer": "^6.3.0",
"nodemon": "^1.19.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3"
}
}