-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.49 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
112
113
114
115
{
"name": "nucleus",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "next lint",
"test": "vitest",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset -f",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "ts-node prisma/seed.ts",
"postinstall": "prisma generate",
"prepare": "husky install",
"change:add": "changeset add",
"change:status": "changeset status",
"change:version": "changeset version"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-redshift-data": "^3.489.0",
"@aws-sdk/client-s3": "^3.474.0",
"@aws-sdk/client-sts": "^3.489.0",
"@aws-sdk/credential-providers": "^3.489.0",
"@changesets/cli": "^2.26.2",
"@faker-js/faker": "^8.3.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.5.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@segment/analytics-next": "^1.63.0",
"@segment/analytics-node": "^1.3.0",
"@sentry/nextjs": "^7.79.0",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^5.8.9",
"@types/nodemailer": "^6.4.14",
"@types/nodemailer-mailgun-transport": "^1.4.6",
"archiver": "^6.0.1",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"bullmq": "^5.1.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cookies-next": "^4.0.0",
"dayjs": "^1.11.10",
"formik": "^2.4.5",
"ioredis": "^5.3.2",
"libphonenumber-js": "^1.10.49",
"lottie-react": "^2.4.0",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.7",
"nodemailer-mailgun-transport": "^2.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use-scroll-direction": "^0.1.0",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4",
"zod-formik-adapter": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@tanstack/eslint-plugin-query": "^5.8.4",
"@tanstack/react-query-devtools": "^5.13.5",
"@testing-library/react": "^14.1.2",
"@types/archiver": "^6.0.2",
"@types/bcryptjs": "^2.4.5",
"@types/eslint": "^8.44.6",
"@types/node": "^18.18.8",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^5.5.2",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.2"
},
"ct3aMetadata": {
"initVersion": "7.22.0"
},
"packageManager": "[email protected]"
}