-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.86 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
{
"name": "mrhs-stem-magazine",
"version": "1.1.1",
"author": "Arjun Cattamanchi",
"description": "MRHS STEM Magazine web platform built with Next.js, Clerk, and Prisma.",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"dev": "next dev",
"lint": "eslint .",
"start": "next start",
"format": "prettier --write .",
"prepare": "node -e \"if (process.env.HUSKY === '0') process.exit(0); try { require.resolve('husky'); const { execSync } = require('node:child_process'); execSync('npx husky install', { stdio: 'inherit' }); } catch (e) { if (e.code !== 'MODULE_NOT_FOUND') throw e; }\"",
"lint:staged": "eslint .",
"postbuild": "npx prisma generate",
"postinstall": "npx prisma generate",
"prisma:generate": "npx prisma generate",
"prisma:push": "npx prisma db push",
"seed": "node --loader ts-node/esm prisma/seed.ts",
"cleanup:duplicate-drafts": "node scripts/cleanup-duplicate-draft-submissions.mjs",
"ngrok": "ngrok http 3000"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@clerk/nextjs": "^6.36.5",
"@prisma/client": "^6.19.2",
"@tailwindcss/postcss": "^4.1.4",
"@tanstack/react-query": "^5.90.0",
"@tanstack/react-query-devtools": "^5.91.1",
"@types/node": "^22.19.8",
"@types/nodemailer": "^7.0.9",
"@types/react": "^19.2.3",
"@types/react-dom": "19.2.3",
"axios": "^1.8.2",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.9.0",
"config": "^3.3.12",
"date-fns": "^4.1.0",
"embla-carousel": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.26",
"katex": "^0.16.32",
"lucide-react": "^0.562.0",
"next": "^16.1.4",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.13",
"postcss": "^8.5.3",
"prisma": "^6.19.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.69.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"svix": "^1.82.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"winston": "^3.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/bundle-analyzer": "^15.3.0",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
}
}