-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 KB
/
package.json
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
{
"name": "tints.dev",
"type": "module",
"description": "A 10-swatch palette generator primarily for Tailwind CSS",
"license": "MIT",
"version": "2.0.0",
"author": "Simeon Griggs",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"cy:open": "cypress open",
"cy:run": "cypress run",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run typecheck"
}
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@mapbox/react-colorpickr": "^10.3.0",
"@portabletext/react": "^3.1.0",
"@remix-run/eslint-config": "^2.9.2",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@resvg/resvg-js": "^2.6.2",
"@sanity/block-content-to-react": "^3.0.0",
"@tailwindcss/typography": "^0.5.13",
"@vercel/analytics": "^1.3.1",
"@vercel/remix": "2.9.2-patch.2",
"chroma-js": "^2.4.2",
"clsx": "^2.1.1",
"cypress": "^13.11.0",
"husky": "^9.0.11",
"isbot": "^5.1.9",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-fast-compare": "^3.2.2",
"react-popper-tooltip": "^4.4.2",
"satori": "^0.10.13",
"usehooks-ts": "^3.1.0",
"vite-tsconfig-paths": "^4.3.2",
"web-vitals": "^4.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@remix-run/dev": "^2.9.2",
"@types/chroma-js": "^2.4.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"autoprefixer": "^10.4.19",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.7",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.2.13"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}