-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "agentic-eda",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"setup": "chmod +x scripts/setup-local.sh && ./scripts/setup-local.sh",
"test-python": "cd scripts && python3 test-python.py",
"test-full": "npm run test-python && npm run dev"
},
"dependencies": {
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.1.0",
"@supabase/auth-helpers-nextjs": "^0.8.7",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/supabase-js": "^2.38.0",
"axios": "^1.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"csv-parser": "^3.0.0",
"formidable": "^3.5.1",
"lucide-react": "^0.292.0",
"micro": "^10.0.1",
"next": "^14.0.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^21.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hot-toast": "^2.6.0",
"stripe": "^14.0.0",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0"
}
}