-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.34 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
{
"name": "bcc3",
"version": "3.3.2",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "DB_SEEDING=true tsx ./src/server/db/seed.ts",
"db:pump": "tsx ./src/server/db/pump.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:diagram": "tsx src/server/db/dbml.ts",
"dev": "next dev",
"test": "jest",
"lint": "next lint",
"start": "next start",
"startdb": "./start-database.sh",
"check-types": "tsc --noEmit --incremental --emitDeclarationOnly false --pretty",
"prepare": "husky",
"analyze": "ANALYZE=true next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@auth0/nextjs-auth0": "^3.5.0",
"@headlessui/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@rvf/set-get": "^7.0.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@vercel/speed-insights": "^1.1.0",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"daisyui": "^4.12.23",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.32.0",
"jotai": "^2.11.0",
"lucide-react": "^0.469.0",
"markdown-it": "^14.1.0",
"next": "15.1.3",
"next-auth": "^4.24.11",
"postgres": "^3.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-quill-new": "^3.3.3",
"react-snowfall": "^2.2.0",
"rrule": "^2.8.1",
"sharp": "^0.33.5",
"sonner": "^1.7.1",
"turndown": "^7.2.0",
"use-onclickoutside": "^0.4.1",
"zod": "^3.24.1",
"zod-form-data": "^2.0.4"
},
"devDependencies": {
"@next/bundle-analyzer": "15.1.3",
"@tailwindcss/forms": "^0.5.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.14",
"@types/markdown-it": "^14",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@types/react-modal": "^3.16.3",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"drizzle-dbml-generator": "^0.7.0",
"drizzle-kit": "^0.23.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-motion": "^1.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.34.0"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}