-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "nodeapp1",
"version": "1.0.0",
"description": "First Node app practice",
"main": "index.js",
"engines": {
"node": "8.1.1",
"npm": "5.0.3"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run 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 mohittilwani15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MohitTilwani15/NodeApp1.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MohitTilwani15/NodeApp1/issues"
},
"homepage": "https://github.com/MohitTilwani15/NodeApp1#readme",
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"localtunnel": "^1.9.0",
"lodash": "^4.17.10",
"mongoose": "^5.0.13",
"nodemon": "^1.11.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"path-parser": "^4.0.4",
"sendgrid": "^5.2.3",
"stripe": "^5.8.0"
},
"devDependencies": {
"danger": "^7.1.3"
}
}