-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "react-smart-dom",
"version": "0.1.0",
"description": "React Smart DOM – React.js renderer for the smart home",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"posttest": "yarn lint",
"build": "babel src -d lib",
"start": "yarn build && node lib/app/sensorExample.js"
},
"files": [
"bin",
"lib",
"src",
"package.json",
"README.md"
],
"keywords": [
"react",
"reactjs",
"miio",
"smart home"
],
"author": "Alexey Zaslavsky <pterolex@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"fbjs": "^1.0.0",
"miio": "^0.15.6",
"react": "^16.10.1",
"react-devtools-core": "^4.1.2",
"react-reconciler": "0.22.1"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.26.0",
"eslint": "^6.5.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"react-devtools": "^4.1.2"
}
}