-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "chess-benchmark",
"version": "1.0.0",
"description": "Chess cognitive training platform with spatial memory, verbal memory, and coordinate vision exercises",
"author": "Clay George",
"repository": {
"type": "git",
"url": "https://github.com/claygeo/chess-benchmark"
},
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"chess.js": "^1.0.0-beta.8",
"next": "14.2.14",
"react": "^18",
"react-chessboard": "^4.7.1",
"react-dom": "^18",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"jsdom": "^29.0.1",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.1.2"
}
}