-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.52 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.52 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "colored",
"version": "1.0.0",
"description": "Color palette 🎨",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "npx eslint ./**/*.{js,ts,jsx,tsx} --quiet --fix",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,css}\"",
"prepare": "husky",
"gen:colors": "npx tsx ./scripts/generate-colors.mts"
},
"keywords": [
"color",
"palette",
"color-palette",
"hex",
"hsl",
"rgb",
"cmyk"
],
"author": "Braswell Azu Kenneth Junior < [braswellkenneth7@gmail.com] >",
"license": "MIT",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-virtual": "^3.13.18",
"autoprefixer": "^10.4.24",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"color-name-list": "^14.29.0",
"colord": "latest",
"concurrently": "^9.2.1",
"cssnano": "^7.1.2",
"culori": "^4.0.2",
"date-fns": "^4.1.0",
"jotai": "^2.17.0",
"lucide-react": "^0.563.0",
"match-sorter": "^8.2.0",
"merge-refs": "^2.0.0",
"million": "^3.1.11",
"motion": "^12.29.2",
"multithreading": "^0.3.49",
"nearest-color": "^0.4.4",
"next": "^16.1.6",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"nuqs": "^2.8.7",
"postcss": "^8.5.6",
"react": "^19",
"react-dom": "^19",
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.2",
"react-resizable-panels": "^4.5.7",
"react-use": "^17.6.0",
"react-use-measure": "^2.1.7",
"seedrandom": "^3.0.5",
"sonner": "^2.0.7",
"swr": "^2.4.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-hocus": "^1.0.0",
"ts-node": "^10",
"tw-animate-css": "^1.4.0",
"use-sync-external-store": "^1.6.0",
"vaul": "^1.1.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.91.4",
"@types/culori": "^4.0.1",
"@types/lodash": "^4.17.23",
"@types/nearest-color": "^0.4.1",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"husky": "^9",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4",
"terser": "^5.46.0",
"tsx": "^4.21.0",
"typescript": "^5",
"typescript-eslint": "^8",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}