-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "server",
"version": "1.0.0",
"description": "Jobify ",
"main": "index.js",
"engines": {
"node": "16.16.0",
"npm": "8.19.2"
},
"scripts": {
"setup-production": "npm run install-client && npm run build-client && npm install --legacy-peer-deps",
"install-client": "cd client && npm install --legacy-peer-deps",
"start": "node index.js",
"server-survey": "concurrently nodemon index.js \"npm run webhook\"",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"build-client": "cd client && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run webhook\"",
"webhook": "lt -p 8000 -s jobifySubDomainRandomName"
},
"author": "Maryam",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"aws-sdk": "^2.1351.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"localtunnel": "^2.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^7.0.3",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^2.0.22",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"path-parser": "^6.1.0",
"sendgrid": "^5.2.3",
"stripe": "^11.17.0",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"xss-clean": "^0.1.1"
}
}