generated from hack4impact-calpoly/nextjs-app-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.74 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "prfc-connect",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"prepare": "husky",
"postinstall": "prisma generate",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:reset": "docker-compose down -v && docker-compose up -d",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:status": "prisma migrate status",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset",
"db:seed": "tsx --env-file=.env.local prisma/seed.ts"
},
"prisma": {
"seed": "tsx --env-file=.env.local prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-mariadb": "^7.0.1",
"@prisma/client": "^7.4.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@react-email/components": "^1.0.2",
"@react-email/render": "^2.0.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.13",
"@tidbcloud/prisma-adapter": "^6.17.0",
"@tidbcloud/serverless": "^0.2.0",
"@upstash/ratelimit": "^2.0.7",
"@upstash/redis": "^1.35.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"fuse.js": "^7.1.0",
"jspdf": "^4.0.0",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^0.555.0",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"resend": "^6.9.4",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"twilio": "^5.11.1",
"vaul": "^1.1.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@faker-js/faker": "^10.2.0",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/twilio": "^3.19.2",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.22",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9",
"jsdom": "^27.3.0",
"lint-staged": "^15",
"postcss": "^8.5.6",
"prettier": "^3",
"prisma": "^7.4.0",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^5",
"typescript-eslint": "^8.48.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16",
"vitest-mock-extended": "^3.1.0"
},
"overrides": {
"hono": "^4.10.3",
"valibot": "^1.2.0",
"lodash": "4.17.23"
}
}