-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "navigation-project",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "Szymon Dudka",
"description": "Web navigation app that allows users to input a desired route and instantly view it on the map, complete with estimated distance and time of travel.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"leaflet": "^1.9.3",
"leaflet-routing-machine": "^3.2.12",
"leaflet.locatecontrol": "^0.79.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.0",
"react-router-dom": "^6.8.1",
"react-to-print": "^2.14.12",
"vite-plugin-rewrite-all": "^1.0.1"
},
"devDependencies": {
"@types/leaflet": "^1.9.1",
"@types/leaflet-routing-machine": "^3.2.4",
"@types/leaflet.locatecontrol": "^0.74.1",
"@types/node": "^18.14.6",
"@tailwindcss/typography": "^0.5.9",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}