-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "real-estate-system",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix main.js",
"format": "prettier -w .",
"start": "node app.js",
"dev": "nodemon app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.4.1"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"countries-states-cities-service": "^1.3.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.1",
"joi": "^17.4.2",
"joi-password": "^2.0.3",
"jsonwebtoken": "^8.5.1",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.1",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0",
"swagger-autogen": "^2.12.6",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
}
}