-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.81 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "rpas",
"version": "0.1.0",
"description": "TODO",
"main": "index.js",
"scripts": {
"start": "npm run start:heroku",
"start:heroku": "node index.js --url wss://rpaswui.herokuapp.com",
"start:local": "node index.js --url ws://localhost:3000",
"deamon:reload": "systemctl daemon-reload",
"deamon:init": "run-p deamon:init:*",
"deamon:init:panTiltHat": "ln -s /srv/rpas/scripts/panTiltHat.service /lib/systemd/system/",
"deamon:init:rpas": "ln -s /srv/rpas/scripts/rpas.service /lib/systemd/system/",
"deamon:enable": "run-p deamon:enable:*",
"deamon:enable:panTiltHat": "systemctl enable panTiltHat.service",
"deamon:enable:rpas": "systemctl enable rpas.service",
"deamon:disable": "run-p deamon:disable:*",
"deamon:disable:panTiltHat": "systemctl disable panTiltHat.service",
"deamon:disable:rpas": "systemctl disable rpas.service",
"deamon:start": "run-p deamon:start:*",
"deamon:start:panTiltHat": "systemctl start panTiltHat.service",
"deamon:start:rpas": "systemctl start rpas.service",
"deamon:stop": "run-p deamon:stop:*",
"deamon:stop:panTiltHat": "systemctl stop panTiltHat.service",
"deamon:stop:rpas": "systemctl stop rpas.service",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasLeRoux/rpas.git"
},
"author": "Nicolas Le Roux <mr.leroux.nicolas@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/NicolasLeRoux/rpas/issues"
},
"homepage": "https://github.com/NicolasLeRoux/rpas#readme",
"dependencies": {
"amqplib": "^0.5.2",
"motor-hat": "^2.0.2",
"opencv": "^6.0.0",
"websocket": "^1.0.25"
},
"peerDependencies": {
"wrtc": "0.0.65"
},
"devDependencies": {
"npm-run-all": "^4.1.2"
}
}