forked from UTDNebula/utd-clubs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.74 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.74 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
{
"name": "nebula-jupiter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --fix",
"lint:check": "next lint",
"test": "NODE_OPTIONS=--experimental-vm-modules dotenv jest --detectOpenHandles --forceExit",
"drizzle:generate": "dotenv drizzle-kit generate",
"drizzle:push": "dotenv drizzle-kit push"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.3.2",
"@hookform/resolvers": "^3.3.2",
"@neondatabase/serverless": "^0.10.2",
"@next/third-parties": "^14.2.15",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@sentry/nextjs": "^9.22.0",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-query": "^5.74.3",
"@tanstack/react-table": "^8.11.0",
"@tanstack/react-virtual": "^3.0.1",
"@trpc/client": "^11.1.0",
"@trpc/server": "^11.1.0",
"@trpc/tanstack-react-query": "^11.1.0",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.44.3",
"drizzle-zod": "^0.8.2",
"next": "^14.2.2",
"next-auth": "^4.23.0",
"postgres": "^3.3.5",
"react": "^18.2.0",
"react-day-picker": "^8.9.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"sharp": "^0.33.5",
"superjson": "^1.13.1",
"zod": "^4.0.5",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "^8.56.12",
"@types/jest": "^29.5.5",
"@types/node": "^18.16.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.3.0",
"drizzle-kit": "^0.31.4",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^29.7.0",
"postcss": "^8.4.27",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.4",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"overrides": {
"drizzle-zod": {
"zod": "^4.0.5"
}
}
}