-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
{
"name": "adsylabs-app",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "4.21.7",
"@neondatabase/serverless": "0.4.5",
"@prisma/client": "4.14.1",
"@t3-oss/env-nextjs": "0.2.2",
"@tanstack/react-query": "4.29.5",
"@tanstack/react-query-devtools": "4.29.14",
"@tanstack/react-table": "8.9.2",
"@trpc/client": "10.23.0",
"@trpc/next": "10.23.0",
"@trpc/react-query": "10.23.0",
"@trpc/server": "10.23.0",
"@uploadthing/react": "4.0.0",
"@vercel/analytics": "1.0.0",
"class-variance-authority": "0.6.0",
"dayjs": "1.11.8",
"formik": "2.2.9",
"framer-motion": "10.11.2",
"next": "13.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-hot-toast": "2.4.1",
"react-icons": "4.8.0",
"react-intl": "6.4.2",
"react-select": "5.7.3",
"styled-components": "5.3.9",
"superjson": "1.12.3",
"tailwind-merge": "1.13.2",
"twin.macro": "3.1.0",
"uploadthing": "4.0.0",
"zod": "3.21.4",
"zod-formik-adapter": "1.2.0",
"zustand": "4.3.7"
},
"devDependencies": {
"@types/node": "20.2.5",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"autoprefixer": "10.4.14",
"babel-plugin-styled-components": "2.0.7",
"babel-plugin-twin": "1.1.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-plugin-unused-imports": "2.0.0",
"postcss": "8.4.21",
"prisma": "4.14.1",
"tailwindcss": "3.2.7",
"ts-node": "10.9.1",
"typescript": "5.0.2"
},
"prisma": {
"schema": "src/server/database/schema.prisma",
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/server/database/seed.ts"
},
"babelMacros": {
"twin": {
"styled": {
"import": "default",
"from": "styled-components"
}
}
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"resolutions": {
"webpack": "^5"
}
}