-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.01 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
{
"name": "react-chess",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Professional React-based chess application showcasing the @rumenx/chess npm package",
"author": "Rumen Damyanov <contact@rumenx.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RumenDamyanov/react-chess.git"
},
"bugs": {
"url": "https://github.com/RumenDamyanov/react-chess/issues"
},
"homepage": "https://github.com/RumenDamyanov/react-chess#readme",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,css,scss,md}\"",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2"
},
"dependencies": {
"@rumenx/chess": "^1.0.2",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"prettier": "^3.8.4",
"sass": "^1.99.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.1.4"
}
}