forked from SimeonGriggs/tints.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.15 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
{
"name": "palette-generator",
"description": "A 10-swatch palette generator primarily for Tailwind CSS",
"license": "MIT",
"version": "2.0.0",
"author": "Simeon Griggs",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"cy:open": "cypress open",
"cy:run": "cypress run",
"postinstall": "remix setup node && husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run typecheck"
}
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.13",
"@mapbox/react-colorpickr": "^10.3.0",
"@portabletext/react": "^2.0.0",
"@remix-run/eslint-config": "^1.8.1",
"@remix-run/react": "^1.8.1",
"@remix-run/serve": "^1.8.1",
"@remix-run/vercel": "^1.8.1",
"@resvg/resvg-js": "^2.4.1",
"@sanity/block-content-to-react": "^3.0.0",
"@tailwindcss/typography": "^0.5.8",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@vercel/analytics": "^0.1.5",
"clsx": "^1.2.1",
"cypress": "^11.2.0",
"husky": "^8.0.2",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.1",
"react-popper-tooltip": "^4.4.2",
"satori": "^0.4.1",
"usehooks-ts": "^2.9.1",
"web-vitals": "^3.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@remix-run/dev": "^1.8.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"autoprefixer": "^10.4.13",
"esbuild": "^0.15.18",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}