mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-25 14:17:56 -05:00
22 lines
742 B
JSON
22 lines
742 B
JSON
{
|
|
"name": "@metafam/the-game",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"workspaces": ["packages/*"],
|
|
"scripts": {
|
|
"docker:start": "docker-compose up -d database && sleep 2 && docker-compose up --build -d",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"hasura-cli": "1.1.1"
|
|
}
|
|
}
|