-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
{
"name": "home-automation-example",
"version": "0.0.1",
"description": "A simple demonstration of using Exosite's Murano.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/exosite/home-automation-example.git"
},
"engines": {
"node": ">=0.12"
},
"engineStrict": true,
"license": "Apache-2.0",
"semistandard": {
"globals": [
"describe",
"should",
"it",
"before",
"after"
],
"honorStyleSettings": true
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --hot --content-base public --history-api-fallback",
"start:prod": "webpack && node server.js",
"compile": "NODE_ENV=production webpack",
"test": "mocha"
},
"author": "Patrick Barrett <[email protected]>",
"dependencies": {
"example-app-minimum-node-version": "file:./node-version-restriction",
"babel-core": "~6.5.1",
"babel-loader": "~6.2.2",
"babel-plugin-transform-object-rest-spread": "~6.6.5",
"babel-preset-es2015": "~6.5.0",
"babel-preset-react": "~6.5.0",
"bluebird": "~3.4.1",
"compression": "~1.6.1",
"dotenv": "~2.0.0",
"if-env": "~1.0.0",
"json-loader": "~0.5.4",
"jsonep": "0",
"lua.vm.js": "~0.0.1",
"material-ui": "~0.15.1",
"moment-timezone": "~0.5.1",
"path": "~0.12.7",
"react": "~15.1.0",
"react-dom": "~15.1.0",
"react-redux": "~4.4.1",
"react-router": "~2.0.0",
"react-script-loader": "~0.0.1",
"react-tap-event-plugin": "~1.0.0",
"whatwg-fetch": "~1.0.0"
},
"devDependencies": {
"baggage-loader": "~0.2.4",
"chai": "~3.5.0",
"clean-webpack-plugin": "~0.1.9",
"css-loader": "~0.23.1",
"eslint": "~2.11.1",
"eslint-loader": "~1.3.0",
"exports-loader": "~0.6.3",
"extract-text-webpack-plugin": "~1.0.1",
"file-loader": "~0.8.5",
"html-loader": "~0.4.3",
"http-server": "~0.8.5",
"imports-loader": "~0.6.5",
"mocha": "~2.5.3",
"node-sass": "~3.7.0",
"react-hot-loader": "~1.3.0",
"sass-loader": "~3.2.0",
"style-loader": "~0.13.1",
"sync-request": "~3.0.1",
"url-loader": "~0.5.7",
"webpack": "~1.13.1",
"webpack-dev-server": "~1.14.1"
}
}