-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 997 Bytes
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
{
"name": "emailsy",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node server/app.js",
"server": "nodemon server/app.js",
"clientinstall": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run webhook\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"webhook": "lt -p 5000 -s emailsymernsmartapp"
},
"engines": {
"node": "14.7.0"
},
"author": "Ishan Varshney",
"license": "ISC",
"dependencies": {
"@sendgrid/helpers": "^7.4.2",
"@sendgrid/mail": "^7.4.2",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"localtunnel": "^2.0.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.19",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"stripe": "^8.138.0"
}
}