-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.05 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
94
95
96
97
98
99
100
101
102
103
{
"name": "x-boilerplate",
"version": "1.0.0-beta.13",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky install",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"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",
"prettier:format": "prettier --config .prettierrc \"./**/*.+(js|ts|tsx|ts)\" --write",
"prettier": "prettier --config .prettierrc \"./**/*.+(js|ts|tsx|ts)\" --check",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@hookform/resolvers": "3.9.0",
"@icons-pack/react-simple-icons": "10.1.0",
"@lukemorales/query-key-factory": "1.3.4",
"@openkit/language-codes": "0.1.0-beta.6",
"@radix-ui/react-dialog": "1.1.2",
"@react-email/components": "0.0.25",
"@react-email/html": "0.0.10",
"@stripe/stripe-js": "4.9.0",
"@tanstack/react-query": "5.59.16",
"@tanstack/react-query-devtools": "5.59.16",
"@uidotdev/usehooks": "2.4.1",
"axios": "1.7.7",
"camelcase-keys": "9.1.3",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"framer-motion": "11.11.9",
"geist": "1.3.1",
"i18next": "23.4.4",
"next": "15.0.1",
"next-auth": "5.0.0-beta.25",
"next-intl": "3.23.5",
"next-safe-action": "7.9.2",
"nuqs": "2.0.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-email": "3.0.1",
"react-hook-form": "7.53.1",
"react-i18next": "13.1.1",
"resend": "4.0.0",
"sonner": "1.5.0",
"stripe": "17.2.1",
"tailwind-merge": "2.5.4",
"zod": "3.23.8"
},
"lint-staged": {
"*.{ts,js,json}": [
"pnpm run prettier"
]
},
"devDependencies": {
"@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.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.4.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"autoprefixer": "10.4.20",
"eslint": "8.56.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"lint-staged": "13.2.3",
"postcss": "8.4.45",
"prettier": "3.3.3",
"tailwindcss": "3.4.14",
"typescript": "5.5.4",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.0.5"
},
"packageManager": "pnpm@9.11.0"
}