This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
generated from shiukaheng/sdp-ros-turtlebot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (77 loc) · 2.97 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"dependencies": {
"ascii-art": "^2.8.5",
"chalk": "^4.1.2"
},
"name": "stagehands",
"description": "Stagehands Monorepo",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build-bot": "cd packages/bot && npm run build",
"dev-bot": "cd packages/bot && npm run dev",
"prod-bot": "cd packages/bot && npm run prod",
"dev-bot-pairing-emu": "cd packages/bot && npm run discovery-emu",
"build-bridge": "cd packages/bridge && npm run build",
"dev-bridge": "cd packages/bridge && npm run dev",
"test-bridge": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build-fake-bridge": "cd packages/fake_bridge && npm run build",
"dev-fake-bridge": "cd packages/fake_bridge && npm run dev",
"build-schema": "cd packages/schema && npm run build",
"dev-schema": "cd packages/schema && npm run dev",
"build-utils": "cd packages/utils && npm run build",
"dev-utils": "cd packages/utils && npm run dev",
"build-web": "cd packages/web && npm run build",
"dev-web": "cd packages/web && npm run dev",
"dev-web-emu": "npm run build-schema && concurrently \"npm run dev-fake-bridge\" \"npm run dev-web\"",
"build-wtf": "cd packages/wtf && npm run build",
"dev-wtf": "cd packages/wtf && npm run dev",
"wtf": "cd packages/wtf && npm run wtf",
"build-bot-deps": "npm run build-schema && npm run build-utils && npm run build-bot && npm run build-wtf",
"build-all": "npm run build-bot-deps && npm run build-bridge && npm run build-fake-bridge && npm run build-web",
"ros": "ts-node scripts/launch_ros.ts",
"ros-prod": "cd ./ros && docker-compose -f docker-compose.yaml -f docker-compose.prod.yaml up",
"docker-build": "ts-node scripts/update_prod.ts",
"docker-push": "docker push shiukaheng/stagehands:prod",
"docker-pull": "docker pull shiukaheng/stagehands:prod",
"docker-update": "npm run docker-build && npm run docker-push",
"install-pi": "cd bot_setup && chmod +x install.sh && ./install.sh",
"prebuild": "echo Please use build-ros-prod instead"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiukaheng/stagehands.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shiukaheng/stagehands/issues"
},
"homepage": "https://github.com/shiukaheng/stagehands#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"assert": "^2.0.0",
"buffer": "^5.7.1",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"url": "^0.11.0",
"util": "^0.12.5",
"kill-port": "^2.0.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0"
}
}