-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 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
{
"name": "csclub-website",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyse": "cross-env ANALYSE=true next build",
"start": "next start",
"lint": "cross-env SKIP_ENV_VALIDATION=true next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,json,mjs,cjs,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,json,mjs,cjs,yml,yaml}\"",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"email:dev": "email dev --dir=src/emails"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@libsql/client": "0.14.0",
"@react-email/components": "^0.0.31",
"@t3-oss/env-nextjs": "^0.11.1",
"drizzle-orm": "^0.38.3",
"drizzle-zod": "^0.6.1",
"jose": "^5.9.6",
"just-submit": "^0.0.8",
"ky": "^1.7.4",
"luxon": "^3.5.0",
"md5": "^2.3.0",
"nanoid": "^5.0.9",
"next": "14.2.22",
"next-auth": "5.0.0-beta.25",
"nodemailer": "^6.9.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-email": "^3.0.4",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"redis": "^4.7.0",
"sharp": "^0.33.5",
"square": "^39.1.1",
"swr": "^2.3.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@next/env": "^15.1.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/luxon": "^3.4.2",
"@types/md5": "^2.3.5",
"@types/node": "^22.10.3",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"tsec": "^0.2.8",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,mjs,cjs,yml,yaml}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}