-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.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
{
"name": "x-boilerplate",
"version": "1.0.0-beta.15",
"private": true,
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"test:e2e": "playwright test",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@hookform/resolvers": "4.0.0",
"@icons-pack/react-simple-icons": "11.2.0",
"@lukemorales/query-key-factory": "1.3.4",
"@radix-ui/react-dialog": "1.1.4",
"@react-email/components": "0.0.31",
"@react-email/html": "0.0.11",
"@stripe/stripe-js": "4.9.0",
"@tanstack/react-query": "5.66.0",
"@tanstack/react-query-devtools": "5.66.0",
"@uidotdev/usehooks": "2.4.1",
"axios": "1.7.9",
"camelcase-keys": "9.1.3",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"framer-motion": "11.15.0",
"geist": "1.3.1",
"next": "15.1.7",
"next-auth": "5.0.0-beta.25",
"next-intl": "3.26.1",
"next-safe-action": "7.10.3",
"nuqs": "2.3.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-email": "3.0.4",
"react-hook-form": "7.54.2",
"resend": "4.0.1",
"sonner": "1.7.1",
"stripe": "17.2.1",
"tailwind-merge": "2.5.5",
"zod": "3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@changesets/get-release-plan": "4.0.3",
"@changesets/types": "6.0.0",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@playwright/test": "1.46.1",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"autoprefixer": "10.4.20",
"husky": "9.1.7",
"jsdom": "25.0.1",
"postcss": "^8",
"tailwindcss": "3.4.17",
"typescript": "^5",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"packageManager": "[email protected]"
}