-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.11 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
29
30
31
32
{
"name": "ar-drone-controller",
"version": "1.0.0",
"description": "AR Drone Controller - Real-time web-based drone control application",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev --workspace=@ar-drone-controller/api",
"dev:web": "npm run dev --workspace=@ar-drone-controller/web",
"build": "npm run build --workspaces",
"build:api": "npm run build --workspace=@ar-drone-controller/api",
"build:web": "npm run build --workspace=@ar-drone-controller/web",
"test": "npm run test --workspaces",
"test:api": "npm run test --workspace=@ar-drone-controller/api",
"test:web": "npm run test --workspace=@ar-drone-controller/web",
"lint": "npm run lint --workspace=@ar-drone-controller/web",
"install-all": "npm install"
},
"keywords": ["ar-drone", "controller", "websocket", "react", "express", "typescript"],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": "20.11.0",
"npm": ">=10.0.0"
}
}