-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "homebridge-zigbee-nt",
"version": "2.0.0",
"description": "ZigBee New Technology Platform plugin for HomeBridge",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && yarn build:ts && yarn build:ui",
"build:ui": "parcel build public/index.html --out-dir dist/public",
"test": "jest --forceExit --coverage --verbose",
"watch:test": "yarn run test -- --watchAll",
"build:ts": "tsc",
"lint": "tsc --noEmit && eslint \"src/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,__{tests,mocks}__}/**/*.ts\"",
"permit-join": "node scripts/permit-join.js",
"clean": "rimraf dist/",
"serve": "ts-node scripts/serve.ts",
"watch": "concurrently -k -p \"[{name}]\" \"yarn watch:ts\" \"yarn watch:node\"",
"watch:ts": "tsc -w",
"watch:node": "ts-nodemon --exec \"yarn serve\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"homebridge": ">=1.1.0",
"node": ">=12.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madchicken/homebridge-zigbee-nt.git"
},
"keywords": [
"homebridge-plugin",
"homebridge-zigbee",
"homebridge",
"homekit",
"zigbee",
"ikea",
"tradfri",
"xiaomi",
"aqara",
"philips",
"hue",
"sonoff"
],
"author": {
"name": "Pierpaolo Follia",
"email": "pfollia@gmail.com",
"url": "https://github.com/madchicken/homebridge-zigbee-nt.git"
},
"license": "MIT",
"homepage": "https://github.com/madchicken/homebridge-zigbee-nt.git#README.md",
"dependencies": {
"async-retry": "^1.3.1",
"body-parser": "^1.19.0",
"dayjs": "^1.9.8",
"emotion": "^11.0.0",
"evergreen-ui": "^5.1.2",
"express": "^4.17.1",
"http2": "^3.3.7",
"js-big-decimal": "^1.2.4",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-json-view": "^1.19.1",
"react-query": "^3.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"serialport": "^9.0.2",
"zigbee-herdsman": "^0.13.57",
"zigbee-herdsman-converters": "^14.0.24"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.0.0",
"@trongnd/ts-nodemon": "^1.0.3",
"@types/async-retry": "^1.4.2",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.149",
"@types/nanoid": "^2.1.0",
"@types/node": "^11.15.3",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/serialport": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"homebridge": "^1.1.6",
"http-proxy-middleware": "^1.0.6",
"husky": "^4.2.3",
"jest": "^26.6.3",
"nock": "^12.0.2",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"resolutions": {
"@types/react": "17.0.0"
},
"files": [
"dist",
"public",
"config.schema.json",
"package.json"
],
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}