-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.45 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
{
"name": "markit",
"version": "1.5.9",
"private": true,
"engines": {
"node": ">=24 <25"
},
"scripts": {
"predev": "node scripts/check-node.mjs",
"dev": "node server.js",
"prebuild": "node scripts/check-node.mjs",
"build": "next build",
"prestart": "node scripts/check-node.mjs",
"start": "NODE_ENV=production node server.js",
"lint": "eslint",
"lint:md": "markdownlint-cli2",
"typecheck": "tsc --noEmit",
"test": "jest",
"audit:ci": "npm audit --audit-level=high --omit=dev",
"ci": "node scripts/ci.mjs",
"ci:full": "node scripts/ci.mjs --with-audit",
"check": "npm run ci",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:studio": "prisma studio",
"prepare": "husky",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx}": "eslint --fix",
"*.md": "markdownlint-cli2 --fix"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@prisma/adapter-pg": "^7.10.0",
"@prisma/client": "^7.10.0",
"@types/bcryptjs": "^3.0.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.4.2",
"framer-motion": "^12.43.0",
"next": "16.3.4",
"next-auth": "^4.24.13",
"pg": "^8.23.0",
"pino": "^10.3.1",
"react": "19.2.8",
"react-confetti": "^6.1.0",
"react-dom": "19.2.8",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.0.2",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@tailwindcss/postcss": "^4.3.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.13.3",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"eslint": "^10.10.0",
"eslint-config-next": "16.3.4",
"husky": "^9.1.7",
"jest": "^30.5.1",
"lint-staged": "^17.4.1",
"markdownlint-cli2": "^0.23.1",
"postcss": "8.5.28",
"prisma": "^7.10.0",
"semantic-release": "^25.0.9",
"tailwindcss": "^4.3.3",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"overrides": {
"postcss": "8.5.28",
"sharp": "0.35.3",
"nanoid": "3.3.18",
"deepmerge-ts": "^8.0.2",
"mysql2": "^3.24.3"
}
}