-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 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
{
"name": "openleague",
"version": "0.38.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:wake": "tsx scripts/wake-db.ts && bun run dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"type": "tsc --noEmit",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"postinstall": "prisma generate",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:reset": "prisma migrate reset",
"db:generate": "prisma generate",
"db:seed": "tsx prisma/seed.ts",
"db:wake": "tsx scripts/wake-db.ts",
"validate-env": "tsx scripts/validate-env.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mailchimp/mailchimp_transactional": "^1.3.3",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"@mui/x-date-pickers": "^8.27.2",
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.5.0",
"@prisma/client": "^7.5.0",
"bcryptjs": "^3.0.3",
"date-fns": "^4.1.0",
"next": "16.2.0",
"next-auth": "^5.0.0-beta.30",
"react": "19.2.4",
"react-dom": "19.2.4",
"use-debounce": "^10.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^4.1.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.0",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"prisma": "^7.5.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}