-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 KB
/
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
39
40
41
42
43
{
"name": "ai-webui",
"version": "0.0.1",
"author": "Kalicyh",
"license": "MIT",
"scripts": {
"setup": "yarn install && pip3 install poetry && poetry install",
"fastapi-dev": "poetry run uvicorn api.main:app --reload",
"next-dev": "next dev",
"dev": "concurrently --kill-others-on-fail \"yarn run fastapi-dev\" \"yarn run next-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.2",
"@tailwindcss/typography": "^0.5.13",
"axios": "^1.6.8",
"concurrently": "^8.2.2",
"framer-motion": "^11.2.12",
"moment": "^2.30.1",
"next": "14.2.4",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.24.0",
"react-toastify": "^10.0.5",
"sonner": "^1.5.0",
"theme-change": "^2.5.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.8",
"postcss": "^8",
"tailwindcss": "^3.4.4",
"typescript": "^5"
}
}