mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-25 14:17:56 -05:00
* Fix errors with profile_rank ENUM * Upgrade to Hasura 1.2.1 * Rename Profile to Account * Common JS package * rm app-react/lib/did * Better login management
30 lines
1.0 KiB
JSON
30 lines
1.0 KiB
JSON
{
|
|
"name": "@the-game/monorepo",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"install": "lerna bootstrap",
|
|
"build": "lerna run build",
|
|
"start:app": "CI=true lerna run --parallel start:app",
|
|
"start:backend": "lerna run --parallel start:backend",
|
|
"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"
|
|
}
|
|
}
|