23 lines
931 B
JSON
Executable File
23 lines
931 B
JSON
Executable File
{
|
|
"name": "adventureos",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev -w @adventureos/web",
|
|
"build": "npm run build -w @adventureos/web",
|
|
"start": "npm run start -w @adventureos/web",
|
|
"db:generate": "npm run generate -w @adventureos/db",
|
|
"db:migrate": "npm run migrate -w @adventureos/db",
|
|
"db:seed": "npm run seed -w @adventureos/db",
|
|
"lint": "npm run lint -w @adventureos/web",
|
|
"typecheck": "npm run typecheck -w @adventureos/web && npm run typecheck -w @adventureos/application && npm run typecheck -w @adventureos/domain",
|
|
"test": "npm run test -w @adventureos/domain && npm run test -w @adventureos/application && npm run test -w @adventureos/web && npm run test -w @adventureos/shared",
|
|
"test:web": "npm run test -w @adventureos/web",
|
|
"test:shared": "npm run test -w @adventureos/shared"
|
|
}
|
|
}
|