-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.44 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.44 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:analyze": "vite-bundle-visualizer",
"build:prod": "npm run lint && npm run test:coverage && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"type-check": "tsc --noEmit",
"validate": "npm run lint && npm run type-check && npm test -- --run",
"clean": "rm -rf dist node_modules/.vite",
"clean:all": "rm -rf dist node_modules coverage playwright-report",
"test:watch": "vitest --watch",
"test:unit": "vitest run --coverage",
"test:changed": "vitest related",
"dev:https": "vite --https",
"dev:host": "vite --host",
"check": "npm run type-check && npm run lint && npm run format:check",
"check:fix": "npm run type-check && npm run lint:fix && npm run format",
"precommit": "lint-staged",
"analyze": "npm run build:analyze",
"stats": "echo '📊 Project Stats:' && echo '📁 Files:' && find src -type f | wc -l && echo '📝 Lines of Code:' && find src -name '*.ts' -o -name '*.tsx' | xargs wc -l | tail -1",
"prepare": "husky",
"postinstall": "playwright install --with-deps chromium"
},
"dependencies": {
"@mliebelt/pgn-parser": "^1.4.18",
"@sentry/react": "^7.99.0",
"@tanstack/react-query": "^5.17.0",
"chart.js": "^4.5.0",
"chess.js": "^1.0.0-beta.7",
"gifshot": "^0.4.5",
"html2canvas": "^1.4.1",
"i18next": "^25.3.1",
"lucide-react": "^0.344.0",
"p-queue": "^8.1.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-chessboard": "^4.7.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-focus-lock": "^2.9.6",
"react-i18next": "^15.6.0",
"react-toastify": "^10.0.4",
"sanitize-html": "^2.11.0",
"stockfish": "^16.0.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.40.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^4.0.9",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.6",
"postcss": "^8.4.35",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^4.0.9"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}