Files
bodyshop/package.json

30 lines
782 B
JSON

{
"name": "bodyshop-server",
"version": "0.0.1",
"license": "UNLICENSED",
"engines": {
"node": "12.13.1",
"npm": "6.11.3"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && 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",
"express-sslify": "^1.2.0"
},
"devDependencies": {
"concurrently": "^4.0.1",
"hasura-cli": "^1.0.0-beta.10"
}
}