You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
687 B
20 lines
687 B
{
|
|
"name": "just-demo",
|
|
"version": "1.0.0",
|
|
"description": "前端简易部署项目",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
|
|
"dev:backend": "cd backend && pnpm run dev",
|
|
"dev:frontend": "cd frontend && pnpm run dev",
|
|
"start": "cd backend && pnpm run start:p",
|
|
"build": "pnpm run build:backend && pnpm run build:frontend",
|
|
"build:backend": "cd backend && pnpm run build",
|
|
"build:frontend": "cd frontend && pnpm run build",
|
|
"install:all": "pnpm install && cd backend && pnpm install && cd ../frontend && pnpm install"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|
|
|
|
|