-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "frankfurt-bike-navigation",
"version": "0.1.0",
"type": "module",
"exports": {
".": "./dist/index.js",
"./styles.css": "./dist/index.css"
},
"files": [
"dist"
],
"scripts": {
"lint": "run-s -s lint:*",
"lint:js": "eslint --format unix src/",
"format": "run-s -s format:*",
"format:js": "prettier --write src/ *.cjs *.json",
"type-check": "tsc --noEmit",
"clean": "rimraf dist/",
"build": "run-s -sl clean build:*",
"build:js": "node esbuild.cjs",
"build:types": "tsc --emitDeclarationOnly"
},
"dependencies": {
"@routingjs/valhalla": "^0.2.0",
"pmtiles": "^3.0.5"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/geojson": "^7946.0.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"esbuild-node-externals": "^1.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"maplibre-gl": "^4.1.2",
"npm-run-all": "^4.1.5",
"prettier": "3.2.4",
"react": "^18",
"react-dom": "^18",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
}
}