-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.43 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
{
"name": "chess-vision",
"version": "5.6.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"framer-motion": "^12.40.0",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "19.2.6",
"react-router-dom": "^7.15.1",
"react-window": "^2.2.7"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"build:analyze": "vite build && npx vite-bundle-visualizer",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint . --max-warnings=500",
"test": "esbuild src/utils/fenParser.test.js --bundle --platform=node --format=esm --outfile=.tmp/node-tests/fenParser.test.mjs && node --test .tmp/node-tests/fenParser.test.mjs",
"format": "prettier --write \"src/**/*.{js,jsx,json,css,md}\"",
"format:check": "prettier . --check",
"format:ci": "prettier . --check || exit 0",
"danger:ci": "danger ci",
"validate:atomic": "node scripts/validate-atomic-commit.js",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.0",
"@eslint/js": "9.39.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.8",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-react": "6.0.2",
"autoprefixer": "^10.5.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"danger": "^13.0.7",
"esbuild": "^0.28.0",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "8.0.11"
}
}