-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "missing-streets",
"author": "Kyle Hensel",
"version": "2.0.0",
"private": true,
"homepage": "https://osm-nz.github.io/missing-streets",
"scripts": {
"0": "ts-node --project tsconfig.backend.json script/0requestLinzExport",
"0.5": "ts-node --project tsconfig.backend.json script/0.5downloadLinzExport",
"1": "sh script/1downloadPlanet.sh",
"2": "ts-node --project tsconfig.backend.json script/2preprocess",
"3": "ts-node --project tsconfig.backend.json script/3conflate",
"script": "npm run 2 && npm run 3 && npm run 4",
"client:start": "react-scripts start",
"client:build": "react-scripts build",
"lint": "eslint --ext .ts,.tsx,.js --ignore-path .gitignore . && tsc"
},
"dependencies": {
"adm-zip": "^0.5.10",
"copy-text-to-clipboard": "^3.0.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"koordinates-api": "^0.0.0",
"leaflet": "^1.9.3",
"osm-api": "^1.0.5",
"pbf2json": "^6.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.0",
"react-timeago-i18n": "^1.1.0",
"through2": "^4.0.2",
"wellknown": "^0.5.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/geojson": "^7946.0.10",
"@types/leaflet": "^1.9.0",
"@types/node": "^20.11.19",
"@types/pbf2json": "^6.6.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/through2": "^2.0.38",
"@types/wellknown": "^0.5.4",
"eslint": "^8.30.0",
"eslint-config-kyle": "^9.22.1",
"react-scripts": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "kyle",
"rules": {
"camelcase": 0,
"@typescript-eslint/no-non-null-assertion": 0
}
},
"prettier": {},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}