-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.44 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
104
105
106
107
108
109
110
111
{
"name": "retroloop",
"version": "2.0.0",
"private": true,
"scripts": {
"setup": "pnpm install && husky install",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"format": "prettier --write ./",
"lint": "eslint --fix ./",
"clean": "rimraf node_modules && pnpm install && prisma generate && pnpm format && pnpm lint",
"knip": "knip",
"test:unit": "vitest run",
"test:integration": "playwright test",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.11.0",
"dependencies": {
"@ably/spaces": "^0.4.0",
"@feedback-fish/react": "^1.2.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.21.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@sentry/integrations": "^7.114.0",
"@sentry/nextjs": "^8.35.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@tabler/icons-react": "^3.20.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"ably": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "8.1.8",
"formik": "^2.4.6",
"lodash": "^4.17.21",
"lucide-react": "^0.445.0",
"next": "14.2.13",
"next-auth": "^4.24.10",
"next-plausible": "^3.12.2",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-spinners": "^0.14.1",
"resend": "^4.0.0",
"sharp": "^0.33.5",
"stripe": "^14.25.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zod-formik-adapter": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/eslint-plugin-next": "^14.2.16",
"@playwright/test": "^1.48.2",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query-devtools": "^4.36.1",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/lodash": "^4.17.12",
"@types/node": "22.7.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.16",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"knip": "^5.34.1",
"lint-staged": "^15.2.10",
"pnpm": "9.11.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.21.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"tailwindcss-bg-patterns": "^0.3.0",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"vitest": "^1.6.0"
}
}