-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 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
{
"name": "streets-gl",
"version": "1.0.0",
"description": "OpenStreetMap 3D renderer",
"scripts": {
"start": "http-server ./build -p 8080",
"build": "webpack --config ./webpack.config.js --mode=production",
"dev": "webpack serve --config ./webpack.config.js --mode=development",
"lint": "npx eslint src --no-fix --max-warnings 0",
"lint:fix": "npx eslint src --fix",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"test": "jest"
},
"author": "StrandedKitty",
"repository": {
"type": "git",
"url": "https://github.com/StrandedKitty/streets-gl.git"
},
"license": "MIT",
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/dagre": "^0.7.47",
"@types/dagre-d3": "^0.6.3",
"@types/earcut": "^2.1.1",
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.31",
"@types/pbf": "^3.0.2",
"@types/polylabel": "^1.0.5",
"@types/rbush": "^3.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/suncalc": "^1.8.1",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^4.2.1",
"esbuild-loader": "^3.0.1",
"eslint": "^8.16.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"mini-css-extract-plugin": "^2.6.1",
"raw-loader": "^4.0.1",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.76.3",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.5.0",
"worker-loader": "^3.0.2"
},
"dependencies": {
"@loaders.gl/core": "^3.2.10",
"@loaders.gl/gltf": "^3.2.10",
"astronomy-bundle": "^7.5.5",
"d3": "^7.6.1",
"dagre": "^0.8.5",
"dagre-d3": "^0.6.4",
"earcut": "^2.2.2",
"lerc": "^4.0.4",
"path-browserify": "^1.0.1",
"pbf": "^3.2.1",
"polybooljs": "^1.2.0",
"polylabel": "^1.1.0",
"rbush": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-loading-skeleton": "^3.1.0",
"recoil": "^0.7.6",
"simplify-js": "^1.2.4",
"straight-skeleton": "^2.0.1",
"suncalc": "^1.8.0",
"url": "^0.11.4"
}
}