-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"author": "CodeDraken",
"license": "MIT",
"engines": {
"node": "8.6.0",
"npm": "5.4.2"
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"start": "node index.js",
"start-watch": "nodemon index.js",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn start-watch\" \"yarn client\" \"yarn run webhook\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"webhook": "./sendgrid_webhook.sh",
"lt": "lt -p 5000 -s maildrakendevlt000"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-session": "^1.3.2",
"express": "^4.15.4",
"lodash": "^4.17.4",
"mongoose": "^4.11.13",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"path-parser": "^2.0.2",
"sendgrid": "^5.2.3",
"stripe": "^5.1.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"concurrently": "^3.5.0",
"localtunnel": "^1.8.3",
"mocha": "^3.5.3",
"nodemon": "^1.12.1"
}
}