Initial project setup.

Using Vue 3 and TailwindCSS (with PostCSS configuration)
This commit is contained in:
Atharva Sawant
2024-10-15 14:30:00 +05:30
commit a025b41c5f
10 changed files with 2925 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "trackmap",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@vue-leaflet/vue-leaflet": "^0.10.1",
"date-fns": "^4.1.0",
"gpx-parser-builder": "^1.1.1",
"leaflet": "^1.9.4",
"vue": "^3.4.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"vite": "^5.0.0"
}
}