This repository has been archived by the owner on Apr 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "blynk-web-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@avinlab/d3-timeseries-multi-chart": "^0.2.7",
"@avinlab/react-size-me": "^1.1.5",
"@avinlab/repeat": "^1.0.1",
"@blueprintjs/core": "^3.12.0",
"chroma-js": "^2.0.2",
"clsx": "^1.0.1",
"coloreact": "^0.2.4",
"core-js": "^2.6.5",
"d3": "^5.8.0",
"final-form": "^4.11.0",
"immutable": "^4.0.0-rc.12",
"leaflet": "^1.4.0",
"lodash": "^4.17.11",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"pako": "^1.0.8",
"prop-types": "^15.6.2",
"re-reselect": "^2.3.0",
"react": "^16.7.0",
"react-app-polyfill": "^0.2.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.7.0",
"react-draggable": "^3.1.1",
"react-final-form": "^4.0.2",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"superagent": "^4.1.0"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"prettier": "prettier-eslint --write \"src/**/*.{js,json,css}\"",
"lint": "eslint src/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.{js,json,css,md}": [
"prettier-eslint --write",
"git add"
],
"src/**/*.js": "eslint --max-warnings 0"
},
"concurrent": false
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"homepage": ".",
"devDependencies": {
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
}
}