kindergarten/package.json

18 lines
747 B
JSON
Raw Normal View History

{
"name": "kindergarten",
"private": true,
"description": "幼儿阅读教学服务平台 - 一键启动",
"scripts": {
"dev": "concurrently -k -n \"backend,frontend\" -c \"blue,green\" \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd reading-platform-backend && npm run start:dev",
"dev:frontend": "cd reading-platform-frontend && npm run dev",
"start": "concurrently -k -n \"backend,frontend,open\" -c \"blue,green,gray\" \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run open:browser\"",
"open:browser": "wait-on http://localhost:5173 -t 60000 && open http://localhost:5173"
},
"devDependencies": {
"concurrently": "^8.2.2",
"wait-on": "^7.2.0",
"open": "^10.0.0"
}
}