-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
41
42
43
44
45
46
{
"name": "house_automation",
"version": "0.0.1",
"description": "Something to occupy the time",
"main": "index.js",
"scripts": {
"commit": "npx git-cz",
"test": "NODE_ENV=test mocha",
"start": "node bin/www",
"server": "nodemon awsServer/app.js",
"lint": "eslint ."
},
"author": "",
"license": "MIT",
"dependencies": {
"basic-auth": "^1.1.0",
"bunyan": "^1.8.10",
"config": "^2.0.0",
"debug": "^3.1.0",
"diskusage": "^0.2.2",
"easyimage": "^2.1.0",
"eslint-plugin-mocha": "^4.11.0",
"express": "^4.15.2",
"express-bunyan-logger": "^1.3.2",
"helmet": "^3.6.0",
"moment-timezone": "^0.5.21",
"mongodb": "^3.1.9",
"node-schedule": "^1.2.1",
"rpi-gpio": "^0.7.0"
},
"devDependencies": {
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"sinon": "^6.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}