-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 838 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
{
"name": "pulso",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"verificar:tipos": "node scripts/verificar-tipos.mts",
"test:tipos": "node --test scripts/verificar-tipos.test.mts",
"prebuild": "npm run verificar:tipos",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.120.0",
"@supabase/supabase-js": "^2.58.0",
"mapbox-gl": "^3.15.0",
"next": "15.5.23",
"react": "19.1.0",
"react-dom": "19.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^22.15.3",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"tailwindcss": "^4.1.13",
"typescript": "^5.8.3"
}
}