-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
119 lines (119 loc) · 3.76 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
{
"name": "accessmap-webapp",
"version": "1.0.6",
"private": true,
"description": "AccessMap Web App",
"main": "index.js",
"repository": "github.com/accessmap/accessmap-webapp",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js",
"profile": "export $(cat .env | xargs) && webpack --config webpack.profile.js",
"prodtest": "export $(cat .env | xargs) && webpack --config webpack.prod.js",
"build": "webpack --config webpack.prod.js",
"pretty": "prettier --write \"src/**/*.js\"",
"lint": "eslint ./src -f table || true",
"lintandskip": "eslint ./src -f table"
},
"browserslist": [
">0.25%",
"not dead"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-sprite-loader": "^4.1.3",
"transform-loader": "^0.2.4",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@mapbox/geo-viewport": "^0.4.0",
"@mapbox/sphericalmercator": "^1.1.0",
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/boolean-point-in-polygon": "^6.0.1",
"autoprefixer": "^9.6.1",
"chroma-js": "^2.0.3",
"es7-shim": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"i18next-client": "^1.11.4",
"intl": "^1.2.5",
"jwt-decode": "^2.2.0",
"lodash.throttle": "^4.1.1",
"mapbox": "^1.0.0-beta9",
"mapbox-gl": "^1.2.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"opening_hours": "^3.5.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"promise-polyfill": "^8.1.0",
"prop-types": "^15.6.0",
"rakam-js": "^1.0.3",
"react": "^16.8.4",
"react-dimensions": "^1.3.1",
"react-dom": "^16.8.4",
"react-joyride": "^2.0.5",
"react-mapbox-gl": "^4.6.0",
"react-md": "^1.9.3",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-analytics": "^0.3.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-router5": "^6.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"router5": "^6.6.3",
"router5-plugin-browser": "^7.0.2",
"uuid": "^3.2.1",
"whatwg-fetch": "^3.0.0"
}
}