mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-24 05:37:56 -05:00
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "@the-game/monorepo",
|
|
"version": "0.1.0",
|
|
"license": "GPL-3.0",
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"build:app": "lerna run --stream build:app",
|
|
"start:app:dev": "CI=true lerna run --parallel start:app:dev",
|
|
"start:backend": "lerna run --scope @the-game/backend --stream start:backend",
|
|
"start:backend:dev": "lerna run --parallel start:backend:dev",
|
|
"docker:start": "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",
|
|
"precommit": "lerna run --concurrency 1 --stream precommit",
|
|
"prepush": "yarn typecheck"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"dependencies": {
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.11",
|
|
"hasura-cli": "1.2.1",
|
|
"lerna": "^3.16.4",
|
|
"typescript": "^3.9.6"
|
|
}
|
|
}
|