-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "real-estate",
"version": "1.0.0",
"description": "Real Estate project to list properties",
"main": "index.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "11.6.0",
"npm": "6.5.0-next.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rajuchoudhary/real-estate.git"
},
"keywords": [
"real",
"estate"
],
"author": "Raju Choudhary",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rajuchoudhary/real-estate/issues"
},
"homepage": "https://github.com/Rajuchoudhary/real-estate#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^10.11.0"
}
}