Files
TheGame/package.json
Pacien Boisson 899335594a [WIP] Fix docker with lerna (#8)
* trying to fix Backend docker image with lerna

* fix dockerfile CMD

* Fix Dockerfile build

* Fix 3box types

Co-authored-by: Hammad Jutt <jutt@ualberta.ca>
2020-06-08 00:49:39 -06:00

30 lines
1.1 KiB
JSON

{
"name": "@the-game/monorepo",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "lerna run build",
"start:app:dev": "CI=true lerna run --parallel start:app",
"start:backend": "lerna run --scope @the-game/backend start:backend",
"start:backend:dev": "lerna run --parallel start:backend:dev",
"docker:start": "docker-compose up -d database && sleep 4 && docker-compose up --build -d",
"docker:start:hasura": "docker-compose up -d database && sleep 4 && docker-compose up --build -d hasura",
"docker:stop": "docker-compose down",
"docker:clean": "docker-compose down -v",
"hasura": "hasura --project ./hasura",
"hasura:console": "npm run hasura console -- --no-browser",
"hasura:migrate:init": "npm run hasura migrate create \"init\" -- --from-server",
"hasura:migrate:apply": "npm run hasura migrate apply",
"test": "cd packages/tests && yarn test && cd ../..",
"typecheck": "yarn workspaces run typecheck"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"lerna": "^3.16.4",
"hasura-cli": "1.2.1"
}
}