-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 973 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 973 Bytes
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
{
"name": "orgchart",
"version": "1.0.0",
"description": "Real-time AI & Human Workforce Org Chart Editor with Matrix Integration",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"test": "npm run test:server && npm run test:client",
"test:server": "cd server && npm test",
"test:client": "cd client && npm test",
"test:e2e": "npx playwright test",
"test:coverage": "npm run test:server -- --coverage && npm run test:client -- --coverage",
"postinstall": "cd server && npm install && cd ../client && npm install"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"concurrently": "^9.2.1"
},
"license": "MIT"
}