-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && uvicorn api.main: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": {
"@reduxjs/toolkit": "^2.0.1",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"axios": "^1.6.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "14.0.4",
"next-auth": "^4.24.5",
"next-redux-wrapper": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.0",
"react-modal": "^3.16.1",
"react-query": "^3.39.3",
"react-redux": "^9.0.2",
"redux": "^5.0.0",
"redux-thunk": "^3.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}