-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "gotravel",
"version": "1.0.0",
"description": "tour",
"main": "app.js",
"scripts": {
"server": "nodemon server.js",
"start:prod": "SET NODE_ENV=production&&nodemon server.js",
"debug": "ndb server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"author": "Christina Yun",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.1.3",
"helmet": "^4.1.0",
"hpp": "^0.2.3",
"html-to-text": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"sharp": "^0.26.0",
"slugify": "^1.4.5",
"stripe": "^8.96.0",
"validator": "^13.1.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0"
}
}