-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.67 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
{
"name": "trpc-drizzle",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"with-env": "dotenv -e .env.local --",
"db:pull": "bun with-env drizzle-kit introspect",
"db:push": "bun with-env drizzle-kit push",
"db:generate": "bun with-env drizzle-kit generate",
"lint": "eslint --cache --ext \".js,.ts,.tsx\" src",
"lint-fix": "bun lint --fix",
"test-unit": "vitest",
"test-e2e": "playwright test",
"test-start": "run-s test-unit test-e2e"
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@auth/drizzle-adapter": "^1.1.0",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.4.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-slot": "^1.0.2",
"@sparticuz/chromium": "123.0.1",
"@tanstack/react-query": "^5.25.0",
"@tanstack/react-query-devtools": "^5.40.0",
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv-cli": "^7.4.2",
"drizzle-kit": "^0.21.4",
"drizzle-orm": "^0.30.10",
"formik": "^2.4.6",
"heroicons": "^2.1.3",
"lucide-react": "^0.379.0",
"next": "15.0.0-rc.0",
"next-auth": "^5.0.0-beta.18",
"nodemailer": "6.9.13",
"postgres": "^3.4.4",
"puppeteer-core": "22.8.1",
"react": "19.0.0-beta-04b058868c-20240508",
"react-dom": "19.0.0-beta-04b058868c-20240508",
"react-hook-form": "^7.51.5",
"sonner": "^1.4.41",
"superjson": "^1.12.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.4.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.26.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.10.0",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"autoprefixer": "^10.4.7",
"dotenv": "^16.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.8.8",
"start-server-and-test": "^1.12.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vite": "^5.1.0",
"vitest": "^1.5.2"
},
"publishConfig": {
"access": "restricted"
}
}