-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "krayik",
"version": "1.0.0",
"description": "Real Estate App",
"main": "app.js",
"scripts": {
"start": "node server.js",
"start:prod": "SET NODE_ENV=production&& nodemon server.js",
"dev": "SET NODE_ENV=development&& nodemon server.js",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js/ --out-file bundle.js --public-url /js",
"build:js": "parcel build ./public/js/index.js --out-dir ./public/js/ --out-file bundle.js --public-url /js"
},
"author": "Kanishk Sharma",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.26.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.2.6",
"html-to-text": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.13",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.5",
"pug": "^3.0.2",
"sharp": "^0.28.3",
"validator": "^13.6.0",
"xss-clean": "^0.1.1"
}
}