-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"type": "module",
"name": "real-card-game",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "next lint",
"dev": "tsx watch server.ts",
"build": "next build",
"start": "NODE_ENV=production tsx server.ts"
},
"dependencies": {
"@million/lint": "^1.0.0-rc.18",
"@uidotdev/usehooks": "^2.4.1",
"font-color-contrast": "^11.1.0",
"framer-motion": "^11.2.6",
"mix-css-color": "^0.2.0",
"next": "14.2.3",
"radash": "^12.1.0",
"react": "^18",
"react-dom": "^18",
"react-flip-toolkit": "^7.1.0",
"react-loading-skeleton": "^3.4.0",
"react-transition-group": "^4.4.5",
"sass": "^1.77.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"socket.io-msgpack-parser": "^3.0.2",
"tsx": "^4.10.2",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-transition-group": "^4.4.10",
"@types/uuid": "^9.0.8",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"typescript": "^5"
}
}