-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
51
52
53
54
55
56
57
58
{
"name": "iot-raspi-door",
"version": "1.1.3",
"description": "IoT container for Raspberry Pi that handles door opening and luminosity",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon src/index.js --exec babel-node",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist/*",
"prebuild": "npm run clean && npm run lint",
"build": "babel -d dist/ src/",
"production": "cross-env NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmontes11/iot-raspi-door.git"
},
"keywords": [
"js",
"javascript",
"es6",
"babel",
"nodejs",
"npm",
"docker",
"raspberry-pi",
"raspi",
"magnetic-sensor",
"ldr-sensor",
"sensor",
"internet-of-things"
],
"author": "Martin Montes",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmontes11/iot-raspi-door/issues"
},
"homepage": "https://github.com/mmontes11/iot-raspi-door#readme",
"dependencies": {
"@mmontes11/iot-client": "^1.3.3",
"cross-env": "^5.1.4",
"dotenv": "^8.0.0",
"node-yeelight": "^1.0.6",
"onoff": "^1.2.0",
"sleep": "^5.1.1",
"winston": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint-config-mmontes11-node": "^1.0.5",
"nodemon": "^1.14.8"
}
}