23 lines
670 B
JSON
23 lines
670 B
JSON
|
|
{
|
||
|
|
"name": "competition-management-system",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "比赛管理系统",
|
||
|
|
"private": true,
|
||
|
|
"scripts": {
|
||
|
|
"dev:frontend": "pnpm --filter frontend dev",
|
||
|
|
"dev:backend": "pnpm --filter backend start:dev",
|
||
|
|
"dev": "pnpm --parallel dev:frontend dev:backend",
|
||
|
|
"build:frontend": "pnpm --filter frontend build",
|
||
|
|
"build:backend": "pnpm --filter backend build",
|
||
|
|
"build": "pnpm build:frontend && pnpm build:backend",
|
||
|
|
"install:all": "pnpm install",
|
||
|
|
"clean": "pnpm --recursive exec rm -rf node_modules dist"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18.0.0",
|
||
|
|
"pnpm": ">=10.0.0"
|
||
|
|
},
|
||
|
|
"packageManager": "pnpm@10.22.0"
|
||
|
|
}
|
||
|
|
|