-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "next-chess",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install --user -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"fastapi-start": "pip3 install --user -r requirements.txt && python3 -m uvicorn api.index:app --port 8000",
"next-dev": "next dev",
"dev": "concurrently \"npm run fastapi-dev\" \"npm run next-dev\" ",
"build": "next build",
"start": "/etc/jupyter/bin/expose 3000 && concurrently \"npm run fastapi-start\" \"npm run next-start\" ",
"my-start": "concurrently \"next start\" \"npm run fastapi-start\" ",
"next-start": "next start",
"lint": "next lint",
"update-db": "alembic upgrade head && python3 -m api.main",
"server": "python3 -m uvicorn api.index:app --reload"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"antd": "^5.10.2",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"chess.js": "^1.0.0-beta.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"concurrently": "^8.2.2",
"date-fns": "^2.30.0",
"esm": "^3.2.25",
"express.js": "^1.0.0",
"http-proxy-middleware": "^2.0.6",
"lucide-react": "^0.279.0",
"moment": "^2.30.1",
"next": "^14.0.2",
"next-themes": "^0.2.1",
"react": "latest",
"react-chartjs-2": "^5.2.0",
"react-chessboard": "^4.3.1",
"react-countdown": "^2.3.5",
"react-dom": "latest",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"websockets": "^0.2.0"
},
"devDependencies": {
"@types/chess.js": "^0.13.5",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"autoprefixer": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"postcss": "latest",
"tailwindcss": "latest",
"typescript": "latest"
}
}