-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 985 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 985 Bytes
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
{
"name": "psybot",
"version": "1.0.0",
"description": "A robot built on initio + rpi + arduino",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./build/index.js",
"build": "tsc",
"build-watch": "tsc -w",
"clean": "node ./build-scripts/clean.js",
"reset": "node ./build/reset-board.js",
"launch": "git pull; npm run build; npm start;",
"sync": "npm run build&&scp -rp .\\build pi@192.168.3.13:~\\psybot\\build"
},
"author": "S Colmer",
"license": "ISC",
"dependencies": {
"@workshop2/bno055-imu-node": "^1.4.2",
"console-stamp": "^0.2.9",
"firmata": "^2.3.0",
"fsm-as-promised": "^0.16.0",
"javascript-state-machine": "^3.1.0",
"johnny-five": "^2.0.0",
"serialport": "^9.2.0"
},
"devDependencies": {
"@types/javascript-state-machine": "^2.4.1",
"@types/johnny-five": "1.3.0",
"@types/node": "^9.6.55",
"typescript": "^3.8.3"
}
}