-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
128 lines (128 loc) · 3.7 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "meshblu-connector-factory-ui",
"version": "11.0.8",
"description": "meshblu-connector-factory-ui",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack && cp -rfp index.html assets dist",
"start": "node dev-server.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"mocha": "NODE_ENV=test mocha test/.setup.js src/**/*.spec.js",
"test": "echo 'no tests'",
"test:watch": "mocha -w -R mocha-multi --reporter-options spec=-,mocha-osx-reporter=-",
"coverage": "nyc npm test",
"mocha:json": "env NPM_ENV=test mocha --reporter json > coverage/mocha.json"
},
"keywords": [
"zooid",
"zooid-app",
"react",
"babel",
"webpack"
],
"homepage": "https://github.com/octoblu/meshblu-connector-factory",
"bugs": "https://github.com/octoblu/meshblu-connector-factory/issues",
"author": {
"name": "Octoblu",
"url": "https://github.com/octoblu"
},
"repository": {
"type": "git",
"url": "https://github.com/octoblu/meshblu-connector-factory.git"
},
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.5.0",
"bootstrap": "^3.3.7",
"bootstrap-webpack": "0.0.5",
"browser-meshblu-http": "^6.1.2",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"css-modules-require-hook": "^4.0.1",
"enzyme": "^2.3.0",
"es6-promise": "^4.0.5",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"generator-zooid": "^7.2.0",
"imports-loader": "^0.7.0",
"jquery": "^3.0.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.14.0",
"moment": "^2.17.1",
"postcss-loader": "^1.2.1",
"postcss-scss": "^0.4.0",
"precss": "^1.4.0",
"raven-js": "^3.9.1",
"react": "^15.0.2",
"react-cookie": "^1.0.4",
"react-dom": "^15.1.0",
"react-icons": "^2.1.0",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.5",
"react-tabs": "^0.8.2",
"redux": "^3.5.2",
"redux-actions": "^1.2.0",
"redux-logger": "^2.6.1",
"redux-raven-middleware": "^1.1.0",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"strict-uri-encode": "^2.0.0",
"style-loader": "^0.13.1",
"superagent": "^3.3.1",
"ua-parser-js": "^0.7.10",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"zooid-button": "^1.1.3",
"zooid-device-icon": "^1.0.6",
"zooid-error-state": "^1.0.3",
"zooid-octoblu-intercom": "^1.0.1",
"zooid-spinner": "^1.0.2",
"zooid-ui": "^8.0.2",
"zooid-ui-toast": "^1.1.1"
},
"devDependencies": {
"eslint": "^3.12.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.0.1",
"mocha": "^3.2.0",
"mocha-multi": "^0.9.1",
"mocha-osx-reporter": "^0.1.2",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.1.0",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"nyc": {
"cache": true,
"reporter": [
"text-summary",
"lcov",
"json"
],
"extension": [
".coffee"
]
}
}