-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 Bytes
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
{
"name": "poker",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"convex dev\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "playwright test"
},
"dependencies": {
"@use-gesture/react": "^10.3.0",
"classnames": "^2.5.1",
"convex": "^1.8.0",
"d3-array": "^3.2.4",
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-spring": "^10.0.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/d3-array": "^3.2.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-transition-group": "^4.4.10",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-next": "^16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.3.3"
}
}