-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 893 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 893 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
35
{
"name": "travel-log",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"copy-maplibre-worker": "node scripts/copy-maplibre-worker.mjs",
"predev": "npm run copy-maplibre-worker",
"dev": "next dev --webpack -p 7040",
"prebuild": "npm run copy-maplibre-worker",
"build": "next build --webpack",
"start": "next start -p 7040",
"migrate": "node scripts/migrate.mjs"
},
"dependencies": {
"maplibre-gl": "^6.9.0",
"next": "^16.3.4",
"pg": "^8.23.0",
"react": "^19.3.0",
"react-dom": "^19.3.0"
},
"overrides": {
"postcss": "^8.5.18",
"sharp": "^0.35.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.0",
"@types/node": "^24.13.4",
"@types/pg": "^8.23.1",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0"
}
}