-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "ecochain-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --noEmit",
"api:dev": "cd api && .venv/bin/uvicorn app.main:app --reload --host 0.0.0.0 --port 8000",
"api:test": "api/.venv/bin/python -m pytest api/tests"
},
"overrides": {
"postcss": "^8.5.10"
},
"dependencies": {
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"lucide-react": "^0.468.0",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^2.15.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}