-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "next-flask",
"version": "0.1.0",
"private": true,
"scripts": {
"flask-dev": "FLASK_DEBUG=1 pip3 install -r requirements.txt && python3 -m flask --app api/index run -p 5328",
"next-dev": "next dev",
"dev": "node scripts/dev.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"download-models": "node scripts/download-models.js"
},
"dependencies": {
"@neuphonic/neuphonic-js": "^0.7.3",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@react-three/drei": "^9.108.0",
"@react-three/fiber": "^8.16.8",
"@types/recharts": "^1.8.29",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^8.0.1",
"face-api.js": "^0.20.0",
"framer-motion": "^12.5.0",
"lucide-react": "^0.483.0",
"next": "^14.2.25",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-sparkles": "^1.0.0",
"recharts": "^2.15.1",
"tailwind-merge": "^3.0.2",
"three": "^0.155.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.3.19",
"@types/react-dom": "^18.3.5",
"@types/three": "^0.175.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3"
}
}