-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.2 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": "algorithm-arena-v2",
"version": "1.0.0",
"description": "Enterprise-grade Algorithm Arena Platform",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm.cmd run server\" \"npm.cmd run client\" \"npm.cmd run admin\"",
"dev": "concurrently \"npm.cmd run server\" \"npm.cmd run client\"",
"dev:all": "concurrently \"npm.cmd run server\" \"npm.cmd run client\" \"npm.cmd run admin\"",
"dev:standalone": "concurrently \"npm.cmd run server:standalone\" \"npm.cmd run client\"",
"server": "cd server && npm.cmd run dev",
"server:standalone": "cd server && npm.cmd run dev:standalone",
"client": "cd client && npm.cmd run dev",
"admin": "cd admin-client && npm.cmd run dev",
"build": "cd client && npm install --include=dev && npm run build && cd ../admin-client && npm install --include=dev && npm run build && cd ../server && npm install",
"install-all": "npm install && cd server && npm install && cd ../client && npm install && cd ../admin-client && npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"axios": "^1.13.5",
"react-router-dom": "^7.13.0"
}
}