forked from mrzmyr/leipzig-maps
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.86 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
{
"name": "leipzig-maps",
"version": "0.1.0",
"private": true,
"dependencies": {
"@derhuerst/query-overpass": "^2.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@sindresorhus/slugify": "^2.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"bootstrap": "^5.1.1",
"chroma-js": "^2.1.2",
"gh-pages": "^4.0.0",
"leaflet": "^1.7.1",
"node-fetch": "^3.0.0",
"rc-switch": "^3.2.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0-rc.0",
"react-device-detect": "^2.0.1",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.1",
"react-scripts": "4.0.3",
"scrape-it": "^5.3.2",
"source-map-explorer": "^2.5.2",
"use-position": "^0.0.8",
"web-vitals": "^2.1.0"
},
"type": "module",
"scripts": {
"scrape-leipzig-statistik": "node ./src/scrapers/leipzig-statistik.js",
"scrape-swimming-pools": "node ./src/scrapers/leipzig-swimming-pools.js",
"transform-leipzig-statistik": "node ./src/transformers/leipzig-statistik.js",
"transform-leipzig-parks": "node ./src/scrapers/leipzig-parks.js",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "NODE_OPTIONS=--openssl-legacy-provider react-scripts start",
"build": "NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build -r https://github.com/CodeforLeipzig/leipzigmaps.git"
},
"homepage": "https://codeforleipzig.github.io/leipzigmaps/",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}