-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 909 Bytes
/
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
{
"name": "feedback_loop",
"version": "1.0.0",
"description": "Automate the process of sending out surveys to your user base. Through your dashboard, you can send out mass surveys to all of you users by only providing a list of email addresses to send out to.",
"main": "index.js",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"dev": "nodemon index.js",
"webhook": "./ngrok http 5000",
"start": "node index.js"
},
"author": "Ahmed Karaman",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"lodash": "^4.17.11",
"mongoose": "^5.5.5",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^4.2.0",
"stripe": "^6.31.1"
},
"devDependencies": {
"nodemon": "^1.19.0"
}
}