-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.63 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
{
"name": "nebula-clubs",
"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": "eslint --fix .",
"lint:check": "eslint .",
"type:check": "next typegen && tsc --noEmit",
"test": "NODE_OPTIONS=--experimental-vm-modules dotenv jest --detectOpenHandles --forceExit",
"drizzle:generate": "dotenv drizzle-kit generate",
"auth-schema:generate": "dotenv -- npx @better-auth/cli@latest generate --output src/server/db/schema/auth.ts --config src/server/auth.ts",
"drizzle:migrate": "dotenv drizzle-kit migrate",
"drizzle:check": "dotenv drizzle-kit check",
"drizzle:studio": "dotenv drizzle-kit studio",
"migratePageViews": "dotenv -- ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" scripts/migratePageViews.ts"
},
"dependencies": {
"@date-fns/tz": "^1.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@google/genai": "^2.8.0",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.1",
"@mui/material-nextjs": "^9.1.1",
"@mui/x-data-grid": "^9.5.0",
"@mui/x-date-pickers": "^9.5.0",
"@neondatabase/serverless": "^1.1.0",
"@next/third-parties": "^16.2.6",
"@sentry/nextjs": "^10.53.1",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-devtools": "^0.10.5",
"@tanstack/react-form": "^1.32.0",
"@tanstack/react-form-devtools": "^0.2.27",
"@tanstack/react-query": "^5.100.13",
"@tanstack/react-query-devtools": "^5.100.13",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.25",
"@trpc/client": "^11.8.1",
"@trpc/server": "^11.8.1",
"@trpc/tanstack-react-query": "^11.17.0",
"better-auth": "^1.6.11",
"bufferutil": "^4.1.0",
"date-fns": "^4.3.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"framer-motion": "^12.40.0",
"google-auth-library": "^10.6.2",
"googleapis": "^173.0.0",
"next": "^16.2.6",
"postgres": "^3.4.9",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"rehype-external-links": "^3.0.0",
"rehype-sanitize": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"sharp": "^0.35.1",
"strip-markdown": "^6.0.0",
"superjson": "^2.2.6",
"ws": "^8.21.0",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@google-analytics/data": "^6.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jest": "^30.4.2",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}