22 lines
690 B
JSON
22 lines
690 B
JSON
|
|
{
|
||
|
|
"name": "ai-learning-platform",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "AI Learning Platform for Developers",
|
||
|
|
"private": true,
|
||
|
|
"workspaces": [
|
||
|
|
"frontend",
|
||
|
|
"backend",
|
||
|
|
"shared"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
||
|
|
"dev:frontend": "npm run dev --workspace=frontend",
|
||
|
|
"dev:backend": "npm run dev --workspace=backend",
|
||
|
|
"build": "npm run build --workspace=frontend && npm run build --workspace=backend",
|
||
|
|
"install:all": "npm install && npm install --workspace=frontend && npm install --workspace=backend && npm install --workspace=shared"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"concurrently": "^8.2.2"
|
||
|
|
}
|
||
|
|
}
|