-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
83 lines (83 loc) · 2.34 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --port 3333",
"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"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@portabletext/react": "^2.0.3",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-select": "^1.2.1",
"@sanity/document-internationalization": "^1.1.1",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.10.1",
"@vercel/og": "^0.2.0",
"@zolplay/react": "^0.5.1",
"@zolplay/utils": "^1.3.4",
"class-variance-authority": "^0.4.0",
"date-fns": "^2.30.0",
"foxact": "^0.2.33",
"framer-motion": "^10.12.9",
"googleapis": "^112.0.0",
"intl-segmenter-polyfill": "^0.4.4",
"jotai": "^2.1.0",
"js-yaml": "^4.1.0",
"next": "^13.4.1",
"next-intl": "2.14.0-beta.4",
"next-sanity": "^4.3.2",
"next-themes": "^0.2.1",
"posthog-js": "^1.87.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-is": "^18.2.0",
"react-parallax-tilt": "^1.7.137",
"react-uploader": "^3.27.0",
"react-wrap-balancer": "^0.4.1",
"sanity": "^3.10.1",
"server-only": "^0.0.1",
"sonner": "^0.2.0",
"styled-components": "^5.3.10",
"suspend-react": "^0.0.8",
"uploader": "^3.27.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.16.6",
"@types/react": "^18.2.6",
"@zolplay/eslint-config": "^1.0.5",
"@zolplay/prettier-config": "^1.0.5",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-define-config": "^1.20.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"csstype",
"lodash",
"react-router",
"react-router-dom",
"rxjs",
"@sanity/*"
]
}
}
}