-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 985 Bytes
/
package.json
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
{
"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": {
"@tanstack/react-table": "^8.21.2",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"concurrently": "^9.0.1",
"eslint": "8.41.0",
"eslint-config-next": "^15.1.6",
"next": "^15.1.6",
"postcss": "^8.4.47",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "3.4.12",
"typescript": "5.6.2"
},
"devDependencies": {
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}