generated from lherlein/typescript-workspace-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1 KB
/
package.json
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": "ts-ground-station",
"version": "1.0.0",
"description": "Ground Station Software controlling drones on a network",
"scripts": {
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"start:core": "sh -c 'npm --prefix packages/gs-core run start > ./packages/gs-core/logs/gs-core-$(date +\"%Y-%m-%d_%H-%M-%S\").log 2>&1'",
"start:udp-service": "sh -c 'npm --prefix packages/udp-service run start > ./packages/udp-service/logs/udp-service-$(date +\"%Y-%m-%d_%H-%M-%S\").log 2>&1'",
"start": "concurrently \"npm run start:core\" \"npm run start:udp-service\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lherlein/ts-ground-station.git"
},
"keywords": [],
"workspaces": [
"packages/*"
],
"author": "Luca Herlein",
"license": "MIT",
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"concurrently": "^6.3.0"
}
}