-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
{
"name": "next-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext ts,tsx --fix",
"test": "jest"
},
"dependencies": {
"@babel/preset-react": "^7.16.7",
"@react-chess/chessground": "^1.3.4",
"@vercel/analytics": "^1.3.1",
"chart.js": "^4.4.2",
"chess.ts": "^0.16.2",
"chessground": "^8.3.5",
"chroma-js": "^2.4.2",
"exponential-backoff": "^3.1.1",
"framer-motion": "^11.18.2",
"gray-matter": "^4.0.3",
"lila-stockfish-web": "^0.0.7",
"next": "^15.2.6",
"next-transpile-modules": "^10.0.1",
"onnxruntime-web": "^1.23.0",
"posthog-js": "^1.257.0",
"posthog-node": "^5.3.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-floater": "^0.9.4",
"react-hot-toast": "^2.5.1",
"react-intersection-observer": "^9.16.0",
"react-joyride": "^2.9.3",
"react-markdown": "^9.0.3",
"react-tooltip": "^5.28.0",
"recharts": "^2.15.0",
"sass": "^1.47.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chroma-js": "^2.1.3",
"@types/jest": "^30.0.0",
"@types/node": "17.0.8",
"@types/react": "19.0.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^8.2.3",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"node-mocks-http": "^1.17.2",
"postcss": "^8.4.45",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass-loader": "^12.4.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.8.3"
},
"overrides": {
"@types/react": "19.0.8"
}
}