-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "mqttshell",
"type": "module",
"version": "0.0.1",
"description": "Web based program for comfortable work with mqtt messages",
"main": "main.js",
"exports": {
".": "./main.js"
},
"scripts": {
"dev": "node main.js & ./utils/frontDev.sh",
"prod": "./utils/frontProd.sh & node main.js"
},
"author": "Blenderist",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"glob-parent": ">=5.1.2",
"js-yaml": "^3.14.0",
"lodash": "^4.17.21",
"mariadb": "^2.5.4",
"md5": "^2.3.0",
"mongodb": "^3.6.10",
"morgan": "^1.9.1",
"mqtt": "^4.2.8",
"mqtt-match": "^2.0.3",
"mysql2": "^3.9.8",
"pg": "^8.6.0",
"ramda": "^0.27.1",
"sequelize": "^6.6.5",
"shelljs": "^0.8.5",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.0",
"winston": "^3.2.1",
"ws": ">=5.2.3"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nyc": "^15.0.1",
"@babel/eslint-parser": "^7.5.4"
}
}