-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "mern-starter",
"version": "1.0.0",
"engines": {
"node": "8.11.2"
},
"description": "This let's you quickly set up a MERN stack project.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joerez/campaign-manager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joerez/MERN-SPA-starter"
},
"homepage": "https://github.com/joerez/MERN-SPA-starter",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"concurrently": "^3.6.0",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"google-auth-library": "^1.6.1",
"google-calendar": "^1.3.2",
"googleapis": "^32.0.0",
"localtunnel": "^1.9.0",
"moment": "^2.22.2",
"mongoose": "^5.2.2",
"node-schedule": "^1.3.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-oauth2-refresh": "^1.1.0",
"twilio": "^3.18.0"
},
"devDependencies": {}
}