-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 827 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
{
"name": "nextjs-fastapi-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:api": "pip install -r requirements.txt && python -m uvicorn api.index:app --reload",
"dev:next": "next dev",
"dev": "concurrently \"yarn run dev:api\" \"yarn run dev:next\"",
"build": "next build",
"start:api": "pip install -r requirements.txt && python -m uvicorn api.index:app",
"start:next": "next start",
"start": "concurrently \"yarn run start:api\" \"yarn run start:next\""
},
"dependencies": {
"concurrently": "^9.1.0",
"next": "15.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}