-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·90 lines (90 loc) · 2.24 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
{
"name": "Grow-IoT",
"version": "0.4.0",
"description": "A meteor application for the Internet of Living things.",
"repository": {
"type": "git",
"url": "https://github.com/CommonGarden/Grow-IoT"
},
"scripts": {
"start": "meteor npm i && meteor",
"lint": "eslint ."
},
"keywords": [
"IoT",
"Internet of Things",
"thing"
],
"author": "CommonGarden",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/CommonGarden/Grow-IoT/issues"
},
"homepage": "https://github.com/CommonGarden/Grow-IoT",
"dependencies": {
"aws-sdk": "^2.62.0",
"babel-runtime": "^6.18.0",
"bcrypt": "^0.8.7",
"bson-ext": "^1.0.1",
"bufferutil": "^1.2.1",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"coap": "^0.21.0",
"echarts": "^3.3.2",
"elasticsearch": "^12.1.3",
"enzyme": "^2.8.0",
"epoch-charting": "^0.8.4",
"eslint-plugin-jsx-a11y": "^3.0.2",
"fibers": "^1.0.15",
"gridfs-stream": "^1.1.1",
"influx": "^5.0.6",
"inquirer": "^2.0.0",
"knox": "^0.9.2",
"material-ui": "^0.18.7",
"meteor-node-stubs": "^0.2.3",
"moment": "^2.17.1",
"mongodb": "^2.2.16",
"monq": "^0.3.6",
"pondjs": "^0.8.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-flexbox-grid": "^1.1.3",
"react-grid-layout": "^0.14.3",
"react-redux": "^5.0.4",
"react-router": "^4.0.0",
"react-router-dom": "^4.1.1",
"react-svg-gauge": "^1.0.4",
"react-tap-event-plugin": "^2.0.1",
"react-timeseries-charts": "^0.12.5",
"react-title-component": "^1.0.1",
"redux": "^3.6.0",
"utf-8-validate": "^1.2.1",
"weather-icons": "^1.3.2"
},
"devDependencies": {
"Grow.js": "^0.3.75",
"babel-eslint": "^7.1.1",
"babel-preset-stage-1": "^6.22.0",
"eslint": "^3.12.2",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-meteor": "^4.0.1",
"redux-devtools": "^3.4.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {}
}
}