-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1002 Bytes
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
{
"name": "nextjs-fastapi",
"version": "0.2.0",
"private": true,
"scripts": {
"fastapi-dev": ".venv\\Scripts\\python.exe -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@turf/turf": "^7.3.4",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"concurrently": "^9.0.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"leaflet": "^1.9.4",
"lucide-react": "^0.577.0",
"next": "^14.2.13",
"postcss": "^8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.12",
"typescript": "5.6.2"
},
"devDependencies": {
"@types/leaflet": "^1.9.21"
}
}