-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "room",
"version": "0.0.1",
"description": "A set of hue scripts",
"main": "index.js",
"scripts": {
"react": "webpack -p --config ./webpack.config.js --mode development",
"start": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregimba/room.js.git"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"keywords": [
"hue",
"home",
"automation"
],
"author": "Grant Regimbal",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregimba/room.js/issues"
},
"homepage": "https://github.com/gregimba/room.js#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"express": "^4.16.3",
"huejay": "^1.8.0",
"openweather-apis": "^3.3.5",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-skeleton-css": "^1.0.2",
"request": "^2.85.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1"
}
}