33 lines
894 B
JSON
33 lines
894 B
JSON
{
|
|
"name": "tickettracker",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"backend",
|
|
"frontend"
|
|
],
|
|
"overrides": {
|
|
"@types/react": "^19.2.18",
|
|
"@types/react-dom": "^19.2.4",
|
|
"react": "^19.2.8",
|
|
"react-dom": "^19.2.8"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace frontend",
|
|
"dev:backend": "npm run dev --workspace backend",
|
|
"dev:frontend": "npm run dev --workspace frontend",
|
|
"build": "npm run build --workspace backend && npm run build --workspace frontend",
|
|
"start": "./scripts/start-container.sh",
|
|
"start:local": "./scripts/start-local.sh",
|
|
"serve:local": "./scripts/start-local.sh",
|
|
"typecheck": "npm run typecheck --workspace backend && npm run typecheck --workspace frontend"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"overrides": {
|
|
"@types/react": "^19.2.18",
|
|
"@types/react-dom": "^19.2.4"
|
|
}
|
|
}
|