-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
59
60
61
62
63
64
65
66
{
"name": "tempea",
"version": "1.4.1",
"description": "Node.js application for controlling room temperature via raspberry pi",
"main": "index.js",
"private": true,
"scripts": {
"prepush": "npm run lint",
"start": "node index.js | ${NODE_PATH:-node_modules}/.bin/bunyan -o short",
"start:dev": "${NODE_PATH:-node_modules}/.bin/nodemon index.js",
"start:dev:pretty": "${NODE_PATH:-node_modules}/.bin/nodemon index.js | ${NODE_PATH:-node_modules}/.bin/bunyan -o short",
"lint": "${NODE_PATH:-node_modules}/.bin/eslint --fix .",
"test": "CI=true ${NODE_PATH:-node_modules}/.bin/nyc ${NODE_PATH:-node_modules}/.bin/_mocha --recursive --color --exit test",
"test:dev": "CI=true ${NODE_PATH:-node_modules}/.bin/_mocha --recursive --color --exit test",
"codecov": "${NODE_PATH:-node_modules}/.bin/nyc report --reporter=text-lcov > coverage.lcov && ${NODE_PATH:-node_modules}/.bin/codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/eiabea/tempea-api"
},
"author": "eiabea",
"license": "MIT",
"bugs": {
"url": "https://github.com/eiabea/tempea-api"
},
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"chai": "^4.2.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dav": "^1.8.0",
"ds18b20": "^0.1.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"google-auth-library": "^6.0.6",
"googleapis": "^59.0.0",
"helmet": "^4.1.0",
"influxdb-nodejs": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"node-ical": "^0.11.4",
"onoff": "^6.0.0"
},
"devDependencies": {
"chai-http": "^4.3.0",
"codecov": "^3.7.2",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-chai": "^0.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"gaxios": "^3.1.0",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"mocked-env": "^1.3.2",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"null-logger": "^1.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3"
}
}