-
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) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 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": "colors-game",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://jorgench.github.io/colors-game/",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "node ./prepare.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"lint-staged": {
"*.{js,css,ts,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/react": "^0.26.28",
"@headlessui/react": "^2.2.0",
"@types/react-transition-group": "^4.4.11",
"@uidotdev/usehooks": "^2.4.1",
"culori": "^4.0.1",
"install": "^0.13.0",
"npm": "^10.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5",
"zustand": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@iconify/react": "^5.0.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"jsdom-testing-mocks": "^1.13.1",
"lint-staged": "15.2.10",
"prettier": "^3.3.3",
"vite": "^5.4.8",
"vitest": "^2.1.5"
}
}