-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.41 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
84
85
86
87
88
89
{
"private": true,
"type": "module",
"name": "@kevinwolfcr/website",
"version": "1.0.0",
"engines": {
"node": "18.15.0"
},
"license": "MIT",
"scripts": {
"setup": "pnpm install && simple-git-hooks install && cp .env.example .env.local",
"dev": "next dev",
"build": "next build",
"lint:format": "prettier --check .",
"lint:style": "eslint .",
"lint:types": "tsc --noEmit",
"start": "next start",
"clean": "rm -rf .next .turbo node_modules",
"reset": "pnpm run clean && rm -rf .env pnpm-lock.yaml && pnpm run setup",
"upgrade-deps": "pnpm update --interactive --recursive --latest",
"pre-commit": "nano-staged"
},
"dependencies": {
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-tooltip": "1.0.6",
"@react-pdf/renderer": "3.1.12",
"@tabler/icons-react": "2.32.0",
"@vercel/analytics": "1.0.2",
"bright": "0.8.4",
"clsx": "2.0.0",
"cva": "npm:[email protected]",
"encoding": "0.1.13",
"gray-matter": "4.0.3",
"html-to-react": "1.6.0",
"next": "13.4.19",
"next-mdx-remote": "4.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"resend": "1.0.0",
"sharp": "0.32.5",
"tailwind-merge": "1.14.0",
"ts-deepmerge": "6.2.0",
"tw-to-css": "0.0.11",
"zod": "3.22.2"
},
"devDependencies": {
"@kevinwolfcr/eslint-config-react-nextjs": "1.0.1",
"@kevinwolfcr/prettier-config": "1.0.1",
"@next/bundle-analyzer": "13.4.19",
"@radix-ui/colors": "2.1.0",
"@react-pdf/types": "2.3.3",
"@tailwindcss/forms": "0.5.6",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"nano-staged": "0.8.0",
"postcss": "8.4.29",
"prettier": "3.0.3",
"simple-git-hooks": "2.9.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "1.0.7",
"turbo": "1.10.13",
"typescript": "5.2.2"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"prettier": "@kevinwolfcr/prettier-config",
"eslintConfig": {
"extends": "@kevinwolfcr/react-nextjs"
},
"simple-git-hooks": {
"pre-commit": "pnpm run pre-commit"
},
"nano-staged": {
"*.{json,md,yaml,yml}": "prettier --write",
"*.{js,jsx,ts,tsx,mdx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]"
}