-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
93 lines (93 loc) · 2.67 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
90
91
92
93
{
"private": true,
"packageManager": "pnpm@10.5.2",
"scripts": {
"build": "next build",
"dev": "next dev --port 3333 --turbo",
"format": "npx prettier --write . --ignore-path .gitignore",
"lint": "next lint --ignore-path .gitignore",
"lint:fix": "npm run format && npm run lint -- --fix",
"start": "next start",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@mdx-js/react": "^3.1.0",
"@portabletext/react": "^2.0.3",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@vercel/og": "^0.6.5",
"@zolplay/react": "^0.5.1",
"@zolplay/utils": "^1.3.4",
"class-variance-authority": "^0.4.0",
"date-fns": "^2.30.0",
"form-data": "^4.0.2",
"foxact": "^0.2.33",
"googleapis": "^112.0.0",
"intl-segmenter-polyfill": "^0.4.4",
"jotai": "^2.12.1",
"js-yaml": "^4.1.0",
"motion": "^12.4.10",
"next": "^15.2.1",
"next-intl": "3.26.5",
"next-safe-action": "^7.10.4",
"next-sanity": "^4.3.2",
"next-themes": "^0.4.4",
"posthog-js": "^1.227.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-is": "^18.2.0",
"react-parallax-tilt": "^1.7.137",
"react-wrap-balancer": "^1.1.1",
"server-only": "^0.0.1",
"sonner": "^2.0.1",
"styled-components": "^5.3.10",
"suspend-react": "^0.0.8",
"zod": "^3.21.4",
"zod-form-data": "^2.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.5.1",
"@eslint-react/eslint-plugin": "^1.30.2",
"@mdx-js/loader": "^3.1.0",
"@next/eslint-plugin-next": "^15.2.1",
"@next/mdx": "^15.2.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/postcss": "^4.0.12",
"@tailwindcss/typography": "^0.5.9",
"@types/form-data": "^2.5.2",
"@types/js-yaml": "^4.0.5",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.4.23",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.12",
"typescript": "^5.8.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"csstype",
"lodash",
"react-router",
"react-router-dom",
"rxjs",
"@sanity/*"
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,mdx,json,yaml,yml}": "prettier --ignore-path .gitignore --cache --write"
}
}