-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.86 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
{
"name": "eddysims.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 1234",
"build": "next build",
"start": "next start",
"test": "echo \"TODO: Add testing\"",
"lint": "next lint",
"lint:md": "prettier --check './**/*.{md,mdx}' --write",
"typecheck": "tsc --noEmit --incremental false",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"email:dev": "cp .env ./node_modules/react-email/ && email dev --dir ./src/emails",
"knip": "knip",
"build:icons": "tsx ./scripts/build-icons.mts --log=verbose"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@hookform/resolvers": "^3.9.1",
"@next/third-parties": "15.0.3",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-query-devtools": "^5.62.0",
"clsx": "^2.1.0",
"cva": "1.0.0-beta.1",
"framer-motion": "^11.0.6",
"lodash": "^4.17.21",
"next": "15.0.3",
"posthog-js": "^1.194.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-email": "2.1.6",
"react-hook-form": "^7.53.2",
"react-markdown": "^9.0.1",
"react-toastify": "^10.0.6",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"resend": "^4.0.1",
"tailwind-merge": "^2.5.2",
"type-fest": "^4.10.3",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-mdx-gfm": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/preview-api": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@types/lodash": "^4.17.7",
"@types/node": "^22.4.1",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"knip": "^5.27.2",
"node-html-parser": "^6.1.13",
"postcss": "^8",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.6",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.17",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}