-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.79 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.79 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
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
{
"name": "faredge-analytics-dashboard",
"description": "The FAR-EDGE analytics dashboard.",
"author": "Athens Information Technology <info@ait.gr>",
"version": "1.0.2",
"license": "Apache-2.0",
"engines": {
"node": ">=10.1.0",
"npm": ">=5.6.0"
},
"repository": {
"type": "git",
"url": "git@github.com:far-edge/distributed-data-analytics.git"
},
"scripts": {
"build": "run-s clean:dist build:dist",
"build:dist": "env-cmd ./.env cross-env NODE_ENV=production babel-node ./scripts/build.js",
"clean:dist": "rimraf ./dist",
"enforce-node-version": "node ./scripts/enforce-node-version.js",
"lint": "run-s lint:js lint:css",
"lint:js": "eslint ./app ./scripts ./config \"./*.js\"",
"lint:css": "stylelint ./app/**/*.css",
"postinstall": "run-s enforce-node-version",
"precommit": "run-s enforce-node-version lint",
"start": "run-s clean:dist start:dev",
"start:dev": "env-cmd ./.env cross-env babel-node ./scripts/start.js"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"env-cmd": "^8.0.2",
"history": "^4.7.2",
"locale2": "^2.2.0",
"moment": "^2.22.2",
"prop-types": "^15.6.0",
"react": "^16.4.1",
"react-autobind": "^1.0.6",
"react-burger-menu": "^2.1.11",
"react-dom": "^16.4.1",
"react-easy-chart": "^1.0.0",
"react-favicon": "0.0.14",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.3",
"react-localization": "^1.0.10",
"react-redux": "^5.0.6",
"react-redux-toastr": "^7.1.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-select2-wrapper": "^1.0.4-beta6",
"react-table": "^6.7.6",
"redux": "^4.0.0",
"redux-actions": "^2.2.1",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.81.1",
"semver": "^5.5.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^8.6.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"browser-sync": "^2.18.13",
"chalk": "^2.1.0",
"compression": "^1.7.1",
"compression-webpack-plugin": "^1.1.10",
"connect-history-api-fallback": "^1.4.0",
"copy-webpack-plugin": "^4.4.2",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"dotenv-webpack": "^1.5.5",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-jsx-max-len": "^1.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"imagemin-webpack-plugin": "^1.6.1",
"jsdom": "^11.3.0",
"npm-run-all": "^4.1.1",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"serviceworker-webpack-plugin": "^1.0.0-alpha02",
"should": "^13.2.1",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"svg-sprite-loader": "^3.3.1",
"svg-url-loader": "^2.2.0",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"url-loader": "^1.0.1",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^3.2.2",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.0"
}
}