forked from niondir/iot-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.1 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
{
"name": "iot-dashboard",
"version": "0.0.4",
"description": "A generic dashboard application based on JavaScript, HTML and CSS. http://iot-dashboard.org",
"main": "dist/app.bundle.js",
"bin": {
"iot-dashboard": "./bin/iot-dashboard.js"
},
"scripts": {
"start": "node bin/iot-dashboard.js",
"test": "gulp test",
"clean": "gulp clean && npm prune",
"build": "gulp build",
"release": "npm run clean && npm run build --production && npm publish",
"compile": "gulp compile",
"dev": "gulp dev",
"watch": "gulp watch",
"webpack-profile": "webpack --profile --json --config webpack.client.js > stats.json",
"tsc": "tsc",
"gulp": "gulp",
"typings": "typings",
"mocha": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/Niondir/iot-dashboard.git"
},
"author": "Tobias Kaupat",
"license": "MPL-2.0",
"homepage": "http://iot-dashboard.org",
"keywords": [
"iot",
"dashboard",
"M2M",
"react",
"internet of things",
"sensor",
"monitoring"
],
"dependencies": {
"axios": "^0.18.0",
"connect": "^3.4.1",
"serve-static": "^1.11.1"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-core": "6.7.4",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-flow-comments": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.6.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"chai": "3.5.0",
"css-loader": "0.23.1",
"del": "2.2.0",
"es6-promise": "^3.2.1",
"eslint": "2.12.0",
"eslint-plugin-flowtype": "^2.3.1",
"eslint-plugin-react": "^5.2.2",
"exports-loader": "0.6.3",
"expose-loader": "0.7.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"form-serialize": "0.7.1",
"git-rev-sync": "^1.6.0",
"gulp": "3.9.1",
"gulp-eslint": "2.0.0",
"gulp-inject": "4.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-json-editor": "^2.2.1",
"gulp-mocha": "2.2.0",
"gulp-sequence": "^0.4.5",
"gulp-sort": "^2.0.0",
"gulp-tslint": "^6.0.1",
"gulp-typescript": "2.13.6",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"istanbul": "^0.4.4",
"istanbul-instrumenter-loader": "^0.2.0",
"jquery": "3.0.0",
"json-loader": "^0.5.4",
"jsx-loader": "0.13.2",
"loadjs": "2.1.0",
"lodash": "4.11.1",
"mocha": "2.5.3",
"mocha-loader": "0.7.1",
"object-assign": "^4.1.0",
"open": "0.0.5",
"react": "15.0.0",
"react-dom": "15.0.0",
"react-grid-layout": "0.12.6",
"react-redux": "4.4.1",
"redux": "3.3.1",
"redux-form": "5.1.1",
"redux-logger": "2.6.1",
"redux-thunk": "2.0.1",
"require-dot-file": "0.4.0",
"semantic-ui-css": "2.1.8",
"source-map-loader": "^0.1.5",
"style-loader": "0.13.1",
"ts-jsx-loader": "0.2.1",
"ts-loader": "0.8.2",
"tslint": "^3.13.0",
"typescript": "1.8.10",
"typings": "1.3.1",
"urijs": "1.18.1",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1",
"webpack-fail-plugin": "^1.0.4",
"webpack-typescript": "0.5.6"
}
}