-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 924 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
{
"name": "nextjs-fastapi-socketio-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:api": "python -m uvicorn api.socketio_app:socketio_app --reload",
"dev:next": "next dev --turbopack",
"dev": "concurrently \"yarn run dev:api\" \"yarn run dev:next\"",
"build:api": "pip install -r requirements.txt",
"build:next": "next build",
"build": "yarn run build:api && yarn run build:next",
"start:api": "python -m uvicorn api.socketio_app:socketio_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"
}
}