14 lines
410 B
JSON
14 lines
410 B
JSON
{
|
|
"name": "spooty",
|
|
"workspaces": ["src/backend", "src/frontend"],
|
|
"scripts": {
|
|
"start:be": "npm run start:dev -w backend",
|
|
"start:fe": "npm run start -w frontend",
|
|
"build:be": "npm run build -w backend",
|
|
"build:fe": "npm run build -w frontend",
|
|
"build": "npm run build:be npm run build:fe",
|
|
"gen:fe": "npm run gen -w frontend",
|
|
"start": "npm run start:prod -w backend"
|
|
}
|
|
}
|