-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"name": "project-hackathon",
"author": "@pheralb & @tmchein",
"description": "An open source hackathon management built with Next.js & CockroachDB",
"repository": "https://github.com/pheralb/project-hackathon",
"license": "MIT",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check": "npm run lint && npm run ts:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "prisma generate",
"ts:check": "tsc --noEmit",
"dbpush": "npx prisma db push && npx prisma generate",
"studio": "npx prisma studio"
},
"dependencies": {
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.1.0",
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-tooltip": "1.0.6",
"@tanstack/react-query": "4.32.1",
"@trpc/client": "10.36.0",
"@trpc/next": "10.36.0",
"@trpc/react-query": "10.36.0",
"@trpc/server": "10.36.0",
"@uiball/loaders": "1.3.0",
"canvas-confetti": "1.6.0",
"clsx": "2.0.0",
"framer-motion": "10.15.0",
"nanoid": "4.0.2",
"next": "13.4.12",
"next-auth": "4.22.3",
"next-seo": "6.1.0",
"nextjs-progressbar": "0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.2",
"sonner": "0.6.2",
"superjson": "1.13.1",
"zod": "3.21.4"
},
"devDependencies": {
"@types/canvas-confetti": "1.6.0",
"@types/node": "20.4.5",
"@types/prettier": "3.0.0",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"postcss": "8.4.27",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.4.1",
"prisma": "5.1.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
}
}