Skip to content

Instantly share code, notes, and snippets.

@fbohz
Last active June 12, 2020 00:42
Show Gist options
  • Save fbohz/a166f28f54eedf2134e1c739c14fb40f to your computer and use it in GitHub Desktop.
Save fbohz/a166f28f54eedf2134e1c739c14fb40f to your computer and use it in GitHub Desktop.
{
"name": "studio-ghibli-fan-app-backend",
"version": "1.0.0",
"engines": {
"node": "12.7.0",
"npm": "6.13.1"
},
"scripts": {
"client": "cd ../frontend && yarn start",
"server": "nodemon server.js",
"build": "cd ../frontend && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd ../frontend && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "^4.16.4",
"stripe": "6.28.0"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.19.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment