-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
37 lines (37 loc) · 897 Bytes
/
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
{
"name": "sonoff-server",
"version": "0.0.1",
"description": "Private Sonoff server",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/adam-golab/sonoff-server.git"
},
"keywords": [
"sonoff"
],
"author": "Adam Golab",
"license": "MIT",
"bugs": {
"url": "https://github.com/adam-golab/sonoff-server/issues"
},
"homepage": "https://github.com/adam-golab/sonoff-server#readme",
"dependencies": {
"express": "^4.16.2",
"http-status-codes": "^1.3.0",
"nodejs-websocket": "^1.7.1",
"redux": "^3.7.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-brainhub": "^1.7.1",
"nodemon": "^1.15.1"
}
}