-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
{
"name": "pinetting",
"version": "1.0.0",
"description": "Module that allows to discover devices in a network and manage them (WakeOnLan and remote shutdown).",
"main": "server/app.js",
"config": {
"port": 5000,
"iprange": "192.168.0.1/24",
"hostip": "192.168.0.2",
"scanfrequency": 4000,
"mongodb": "mongodb://localhost:27017/network_devices"
},
"scripts": {
"start": "node ./server/app.js",
"start:dev": "sudo nodemon ./server/app.js"
},
"author": {
"name": "Víctor Suárez Fernández",
"email": "vicsufer@gmail.com",
"url": "https://www.linkedin.com/in/vicsufer"
},
"homepage": "https://github.com/ByBordex/PiNetting#readme",
"repository": {
"type": "git",
"url": "https://github.com/bordex/PiNetting"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-dot-engine": "^1.0.7",
"mongodb": "^2.2.33",
"socket.io": "^2.1.1",
"winston": "^3.0.0-rc5",
"winston-loggly-bulk": "^2.0.2"
},
"devDependencies": {
"nodemon": "^1.18.3"
}
}