-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.29 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "chess_battle",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"dev": "next dev",
"dev-wss": "tsx watch src/server/wsServer.ts --tsconfig tsconfig.json",
"lint": "next lint",
"prisma-migrate": "prisma migrate dev",
"prisma-studio": "prisma studio",
"prepare": "husky"
},
"author": "David Byron",
"license": "ISC",
"dependencies": {
"@auth/prisma-adapter": "2.8.0",
"@prisma/extension-accelerate": "1.3.0",
"@reduxjs/toolkit": "2.6.1",
"@tanstack/react-query": "5.69.0",
"@trpc/client": "11.0.0",
"@trpc/next": "11.0.0",
"@trpc/react-query": "11.0.0",
"@trpc/server": "11.0.0",
"cors": "2.8.5",
"next": "15.2.3",
"next-auth": "5.0.0-beta.19",
"node-fetch": "3.3.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "5.5.0",
"react-redux": "9.2.0",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"sqlite3": "5.1.7",
"superjson": "2.2.2",
"ts-node": "10.9.2",
"tsx": "4.19.3",
"unsplash-js": "7.0.19",
"web-vitals": "4.2.4",
"zod": "3.24.2"
},
"type": "module",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@next/eslint-plugin-next": "15.2.3",
"@redux-devtools/extension": "3.3.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@types/cors": "2.8.17",
"@types/jest": "29.5.14",
"@types/react": "19.0.12",
"@types/supertest": "6.0.2",
"autoprefixer": "10.4.21",
"eslint": "9.23.0",
"eslint-config-next": "15.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.5.3",
"prisma": "6.5.0",
"react-test-renderer": "19.0.0",
"supertest": "7.1.0",
"tailwindcss": "^4.0.15",
"typescript": "5.8.2"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "sh prisma/seed.sh"
},
"overrides": {
"@types/react": "19.0.12"
}
}