-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
{
"name": "nextjs-fastapi",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "npm run next-dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.11.5",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/node": "20.2.4",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"chart.js": "^4.0.0",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-datalabels": "^2.2.0",
"concurrently": "^8.0.1",
"dotenv": "^16.4.5",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"fontawesome-free": "^1.0.4",
"graphql": "^16.9.0",
"lz-string": "^1.5.0",
"mongodb": "^6.9.0",
"mpld3": "^0.5.10",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"nltk": "^0.0.1",
"postcss": "^8.4.38",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-dropzone-textarea": "^1.2.2",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"vercel": "^34.1.9",
"xlsx": "^0.18.5"
}
}