Files
chess-project/package.json
T
2025-12-06 17:37:44 +01:00

50 lines
1.3 KiB
JSON

{
"name": "chess_tutor",
"version": "0.1.0",
"license": "GPL-3.0",
"private": true,
"scripts": {
"dev": "next dev -p 3050",
"build": "next build",
"start": "next start -p 3050",
"lint": "eslint",
"test": "jest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm test && npm run test:e2e"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"chess.js": "^1.4.0",
"clsx": "^2.1.1",
"lucide-react": "^0.554.0",
"next": "16.0.3",
"react": "19.2.0",
"react-chessboard": "^5.8.4",
"react-dom": "19.2.0",
"react-markdown": "^10.1.0",
"stockfish.js": "^10.0.2",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}