16 lines
397 B
JSON
16 lines
397 B
JSON
{
|
|
"name": "aiui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"build": "cd frontend && npm run build",
|
|
"start": "cd backend && npm start"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|