-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.22 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
{
"name": "nextjs-shadcn",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"postbuild": "node scripts/sanitize-standalone.mjs",
"start": "next start",
"lint": "tsc --noEmit --pretty false --incremental false && eslint . --max-warnings=0",
"db:plan": "node scripts/mysql-migrate.cjs plan",
"db:status": "node --env-file-if-exists=.env.local scripts/mysql-migrate.cjs status",
"db:migrate": "node --env-file-if-exists=.env.local scripts/mysql-migrate.cjs up",
"test:migrations": "node --test tests/mysql-migrations.test.cjs tests/migration-cli.test.cjs",
"test": "node --test tests/*.test.mjs tests/*.test.cjs",
"check": "npm run lint && npm test",
"format": "bunx biome format --write"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@types/jsonwebtoken": "^9.0.10",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ioredis": "^5.9.2",
"jsonwebtoken": "9.0.3",
"lucide-react": "^0.525.0",
"mammoth": "^1.12.0",
"mysql2": "^3.14.2",
"next": "15.5.20",
"nodemailer": "9.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"read-excel-file": "9.3.1",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20.17.50",
"@types/nodemailer": "^7.0.9",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"eslint": "^9.27.0",
"eslint-config-next": "15.5.20",
"postcss": "8.5.19",
"tailwindcss": "3.4.19",
"typescript": "^5.8.3"
},
"overrides": {
"postcss": "8.5.19"
}
}