-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pivotpoint-ai",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"test": "vitest run",
"server": "tsx watch --env-file=.env.local server/index.ts",
"dev:all": "concurrently -k -n vite,api -c blue,green \"npm run dev\" \"npm run server\""
},
"dependencies": {
"@google/genai": "^1.29.0",
"@supabase/supabase-js": "^2.104.1",
"@types/formidable": "^3.5.1",
"@types/mapbox-gl": "^3.4.1",
"@vercel/node": "^5.7.13",
"cors": "^2.8.6",
"deck.gl": "^9.3.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"formidable": "^3.5.4",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"lucide-react": "^0.546.0",
"mapbox-gl": "^3.22.0",
"multer": "^2.1.1",
"ogl": "^1.0.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-pdf": "^10.4.1",
"recharts": "^3.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^2.0.0"
}
}