-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "schematization",
"version": "1.0.0",
"description": "Implementation of the area-preserving simplification and schematization of polygonal subdivisions, proposed by Buchin et al. (2016)",
"repository": "https://github.com/jakoblistabarth/area-preserving-polygon-schematization",
"private": true,
"packageManager": "pnpm@8.15.4",
"scripts": {
"test": "jest",
"tsc": "tsc",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir app --dir src --dir test",
"prepare": "husky"
},
"author": "Jakob Listabarth",
"license": "MIT",
"dependencies": {
"@fontsource-variable/dm-sans": "^5.0.4",
"@fontsource-variable/inter": "^5.0.17",
"@fontsource/dm-mono": "^5.0.19",
"@mapbox/geojsonhint": "^3.3.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@types/geojson": "^7946.0.14",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"clsx": "^2.1.0",
"d3": "^7.9.0",
"deck.gl": "^9.0.1",
"graham_scan": "^1.0.5",
"leaflet": "^1.9.4",
"next": "^14.1.3",
"pretty-bytes": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"uuid": "^9.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@types/d3": "^7.4.3",
"@types/graham_scan": "^1.0.32",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.9.8",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.3.1"
}
}