-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "nextjs-fastapi",
"version": "0.2.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"bcryptjs": "^3.0.2",
"chart.js": "^4.4.8",
"concurrently": "^9.0.1",
"dotenv": "^16.4.7",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"firebase": "^11.5.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.15.0",
"mongoose": "^8.13.1",
"next": "^14.2.13",
"postcss": "^8.4.47",
"react": "18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "18.3.1",
"tailwindcss": "3.4.12",
"typescript": "5.6.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9"
}
}