-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "quiz-app-monorepo",
"version": "1.0.0",
"description": "Real-time quiz application with React Native client and web dashboard",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:dashboard\"",
"dev:backend": "cd packages/backend && npm run dev",
"dev:dashboard": "cd packages/dashboard && npm run dev",
"build": "npm run build:shared && npm run build:backend && npm run build:dashboard",
"build:shared": "cd packages/shared && npm run build",
"build:backend": "cd packages/backend && npm run build",
"build:dashboard": "cd packages/dashboard && npm run build",
"install:all": "npm install && npm run install:packages",
"install:packages": "cd packages/backend && npm install && cd ../dashboard && npm install && cd ../shared && npm install"
},
"devDependencies": {
"concurrently": "^8.2.0",
"lerna": "^7.4.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}