Files
stellar/package.json

32 lines
1.0 KiB
JSON
Raw Normal View History

2026-03-22 23:33:24 -05:00
{
"name": "stellar",
"version": "0.1.0",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm --workspace client run dev -- --host 0.0.0.0\" \"npm --workspace server run dev\"",
"build": "npm run build:client && npm run build:server",
"build:client": "npm --workspace client run build",
"build:server": "npm --workspace server run build",
"start": "npm --workspace server run start",
"test": "npm run test:client && npm run test:server",
"test:client": "npm --workspace client run test",
"test:server": "npm --workspace server run test",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "npm --workspace client run lint",
"lint:server": "npm --workspace server run lint",
2026-03-23 00:06:01 -05:00
"docker-build": "docker compose build",
"docker-up": "docker compose up --build",
"docker-down": "docker compose down"
2026-03-22 23:33:24 -05:00
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"engines": {
"node": ">=20"
}
}