-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 845 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
{
"name": "berrysend-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"server": "json-server --watch server/db.json --routes server/routes.json --port 3000",
"dev:full": "concurrently \"npm run server\" \"npm run dev\"",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@googlemaps/js-api-loader": "^2.0.2",
"axios": "^1.13.1",
"vue": "^3.5.22",
"vue-router": "^4.6.3",
"pinia": "^3.0.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"vite": "^7.1.11",
"vite-plugin-vue-devtools": "^8.0.3",
"json-server": "^0.17.4",
"concurrently": "^8.2.2"
}
}