-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 920 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
34
35
36
{
"name": "dlc_node_backend",
"version": "1.2.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "rm -rf localStore/* && rm -f /tmp/devices.lock && nodemon app.js",
"prod": "rm -rf localStore/* && rm -f /tmp/devices.lock && node app.js",
"prettier": "prettier --write '**/*.{js,json,css,md}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"cron": "^2.2.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"modbus-serial": "^7.6.0",
"moment": "^2.29.4",
"mysql": "^2.18.1",
"mysql2": "^3.6.5",
"node-cron": "^3.0.2",
"node-localstorage": "^2.2.1",
"serialport": "^10.5.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1"
},
"devDependencies": {
"eslint": "^8.31.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.2"
}
}