forked from GridSpace/grid-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "grid-bot",
"version": "0.1.0",
"description": "Runtime environment setup for GridBot controllers and devices",
"author": "Stewart Allen <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/stewartoallen/grid-bot.git"
},
"scripts": {
"start": "NODE_TLS_REJECT_UNAUTHORIZED='0' node src/js/server.js --stdin --debug=on --baud=115200 --buflen=7 --filedir=/home/pi/grid-bot/uploads",
"start-pool": "NODE_TLS_REJECT_UNAUTHORIZED='0' node src/js/server.js --stdin --debug=on --baud=115200 --grid=http://amma2.local:8111 --filedir=/home/pi/grid-bot/uploads",
"start-server": "sudo nohup nice -n -20 su -l -c node src/js/server.js --baud=115200 --filedir=/home/pi/grid-bot/uploads pi > tmp/gridbot.log &"
},
"keywords": [
"grid.space",
"kiri:moto",
"server",
"3d",
"print",
"gcode"
],
"dependencies": {
"connect": "^3.6.6",
"minimist": "^1.2.5",
"moment": "^2.27.0",
"serialport": "^8.0.8",
"serve-static": "^1.13.2",
"ws": "^5.2.0"
}
}