-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "game",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@floating-ui/react": "^0.24.8",
"@tanstack/query-core": "^4.35.2",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"ethers": "^6.7.1",
"jotai": "^2.4.2",
"jotai-tanstack-query": "^0.7.2",
"lodash-es": "^4.17.21",
"next": "13.4.13-canary.5",
"postcss": "8.4.26",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-hook-form": "^7.46.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@swc-jotai/react-refresh": "^0.0.8",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/lodash-es": "^4.17.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
]
}