-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 841 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
{
"name": "pakao-assistant",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:backend": "cd server && python main.py",
"run": "concurrently -n api,web -c blue,green \"npm run dev:backend\" \"npm run dev\"",
"build": "vite build",
"prebuild": "node scripts/generate-firebase-messaging-sw.mjs",
"preview": "vite preview",
"generate-pwa-icons": "node scripts/generate-pwa-icons.mjs"
},
"dependencies": {
"firebase": "^12.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.1.2",
"sharp": "^0.34.5",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.2.0"
}
}