-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.34 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "micmac-pro",
"version": "0.1.0",
"description": "🚀 MIC MAC Pro - Plataforma de Análisis Prospectivos con Automatización",
"type": "module",
"private": true,
"scripts": {
"dev": "PORT=3001 next dev",
"build": "next build",
"start": "PORT=3001 next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"automation:test": "npm run test:coverage && node scripts/update-linear-testing.js",
"automation:linear": "node scripts/sync-linear-progress.js",
"automation:docs": "node scripts/generate-docs.js",
"automation:all": "npm run automation:test && npm run automation:linear && npm run automation:docs",
"setup": "npm install && npm run automation:docs",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@prisma/client": "^5.6.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.38.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"lucide-react": "^0.541.0",
"next": "^14.2.32",
"postcss": "^8",
"prisma": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"recharts": "^2.15.4",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^24.3.0",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.4.1"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tu-usuario/micmac-app.git"
},
"keywords": [
"micmac",
"prospectiva",
"análisis",
"automation",
"nextjs",
"supabase",
"linear",
"mcp",
"context-control",
"ai-session",
"smart-resume"
],
"author": "Carlos Diaz <diazpolanco13@gmail.com>",
"license": "MIT"
}