20 lines
587 B
JSON
20 lines
587 B
JSON
{
|
|
"name": "transportationer",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/web",
|
|
"worker",
|
|
"shared"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run build --workspace=shared && npm run dev --workspace=apps/web",
|
|
"build": "npm run build --workspace=shared && npm run build --workspace=apps/web && npm run build --workspace=worker",
|
|
"worker:dev": "npm run build --workspace=shared && npm run dev --workspace=worker",
|
|
"lint": "npm run lint --workspace=apps/web"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|