-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "HomePi",
"version": "0.0.1",
"description": "Home Automation with Raspberry Pi and Node Js",
"main": "index.js",
"scripts": {
"start": "bin/homepi",
"dev": "NODE_ENV=development nodemon bin/homepi -- --harmony",
"test": "jest"
},
"bin": {
"homepi": "bin/homepi"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/AlexisLeon/HomePi.git"
},
"author": "AlexisLeon",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexisLeon/HomePi/issues"
},
"homepage": "https://github.com/AlexisLeon/HomePi#readme",
"engines": {
"node": ">=7.10.0"
},
"dependencies": {
"body-parser": "^1.17.2",
"chalk": "^1.1.3",
"commander": "^2.11.0",
"config": "^1.26.1",
"express": "^4.15.3",
"firmata": "^0.17.0",
"hap-nodejs": "^0.4.27",
"johnny-five": "^0.11.1",
"mongodb": "^2.2.28",
"morgan": "^1.8.2",
"node-persist": "^0.0.11",
"socket.io": "^2.0.3",
"udp-serial": "^0.2.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4"
}
}