forked from mietenwatch/mw-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.3 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
{
"name": "mietenwatch",
"version": "1.0.0",
"description": "",
"scripts": {
"develop": "gatsby develop",
"develop-m": "gatsby develop -H 0.0.0.0",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "eslint --fix --ext .js,.jsx ."
},
"dependencies": {
"@mapbox/leaflet-pip": "^1.1.0",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"@mdx-js/tag": "^0.20.3",
"classnames": "^2.2.6",
"convert-csv-to-json": "0.0.15",
"gatsby": "^2.15.29",
"gatsby-cli": "^2.7.54",
"gatsby-image": "^2.2.24",
"gatsby-link": "^2.2.18",
"gatsby-plugin-manifest": "^2.2.28",
"gatsby-plugin-mdx": "^1.0.47",
"gatsby-plugin-netlify": "^2.1.17",
"gatsby-plugin-no-sourcemaps": "^2.1.1",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.1.10",
"gatsby-plugin-react-leaflet": "^2.0.11",
"gatsby-plugin-sass": "^2.1.17",
"gatsby-plugin-sharp": "^2.2.28",
"gatsby-plugin-webfonts": "^1.1.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-source-filesystem": "^2.1.29",
"gatsby-transformer-remark": "^2.6.27",
"gatsby-transformer-sharp": "^2.2.20",
"geojson": "^0.5.0",
"ify-loader": "^1.1.0",
"leaflet": "^1.5.1",
"papaparse": "^5.1.0",
"plotly.js": "^1.50.0",
"prop-types": "^15.7.2",
"rc-slider": "^8.7.1",
"react": "^16.10.2",
"react-accessible-accordion": "^3.0.0",
"react-data-table-component": "^3.5.1",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-leaflet": "^2.4.0",
"react-modal": "^3.10.1",
"react-plotly.js": "^2.3.0",
"react-scrollspy": "^3.4.0",
"react-tooltip": "^3.11.1",
"styled-components": "^4.4.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.2",
"node-sass": "^4.12.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint",
"git add"
]
}
}