-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.47 KB
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
112
113
114
115
116
117
{
"name": "ideas",
"version": "1.4.5",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc --noEmit",
"seed": "ts-node prisma/seed.ts",
"postbuild": "next-sitemap",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
"genversion": "genversion --es6 --semi src/version.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@floating-ui/react": "^0.24.0",
"@heroicons/react": "^2.0.17",
"@hookform/resolvers": "^3.1.0",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.13.0",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-slider": "^1.1.1",
"@radix-ui/react-switch": "^1.0.2",
"@sentry/nextjs": "^7.50.0",
"@tanstack/react-query": "^4.29.5",
"@trpc/client": "^10.23.1",
"@trpc/next": "^10.23.1",
"@trpc/react-query": "^10.23.1",
"@trpc/server": "^10.23.1",
"@upstash/ratelimit": "^0.4.2",
"@upstash/redis": "^1.20.5",
"@vercel/analytics": "^1.0.1",
"@vercel/og": "^0.5.4",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"date-fns": "^2.30.0",
"dynamic-class-list": "^2.0.2",
"feeder-react-feedback": "^0.0.6",
"lodash": "^4.17.21",
"lru-cache": "^9.1.1",
"mixpanel-browser": "^2.47.0",
"next": "^13.3.4",
"next-auth": "^4.22.1",
"next-seo": "^6.0.0",
"next-sitemap": "^4.0.9",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.1",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"react-toggle-dark-mode": "^1.1.1",
"superjson": "^1.12.3",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"zod": "^3.21.4",
"zustand": "^4.3.7"
},
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"@total-typescript/ts-reset": "^0.4.2",
"@types/eslint": "^8.21.3",
"@types/lodash": "^4.14.194",
"@types/mixpanel-browser": "^2.38.1",
"@types/node": "^18.16.3",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.1",
"@types/react-dom": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/coverage-c8": "^0.31.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"genversion": "^3.1.1",
"husky": "^8.0.3",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.13.0",
"sass": "^1.62.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
},
"ct3aMetadata": {
"initVersion": "7.10.1"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}