-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "garmin-tplink-api-proxy",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/blaskovicz/garmin-tplink-api-proxy",
"author": "Zach Auclair",
"license": "MIT",
"private": true,
"engines": {
"node": "^8.x"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint -c tslint.json lib/**/*.ts",
"test": "mocha -r ts-node/register -p tsconfig.json src/**/*.spec.ts",
"start": "node dist/index.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"escape-html": "^1.0.3",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"tplink-cloud-api": "^0.3.5",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/morgan": "^1.7.35",
"@types/node": "^10.9.4",
"@types/redis": "^2.8.6",
"@types/uuid": "^3.4.4",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^3.0.3"
}
}