-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 1.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
29
30
31
32
33
34
{
"name": "auto-dash-back-end",
"description": "RPI4 CAN interface with web socket server and web server",
"version": "2.0.0",
"private": true,
"scripts": {
"init_and_start_vcan_server": "./RPI_system/start_vcan.sh && npm run test_server",
"start_vcan_server": "NODE_ENV=production CHANNEL=vcan0 TYPE=live node index.js",
"can_server": "NODE_ENV=production TYPE=live CHANNEL=can0 node index.js",
"test_server": "NODE_ENV=development TYPE=development CHANNEL=vcan0 node index.js"
},
"author": "Michael J Mathews II",
"dependencies": {
"debug": "^4.3.1",
"express": "^4.17.3",
"i2c-bus": "^5.2.2",
"js-yaml": "^4.1.0",
"serialport": "^10.3.0",
"socketcan": "^3.0.0",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.3.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.24.0",
"eslint-webpack-plugin": "^2.5.3",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0"
},
"type": "module",
"main": "index.js",
"license": "MIT"
}