-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.8 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "npx prisma generate",
"prisma:seed": "ts-node prisma/seed.ts",
"dev-turbo": "next dev --turbopack",
"dev": "next dev",
"build": "next build",
"build:no-lint": "DISABLE_ESLINT_PLUGIN=true next build",
"analyze": "ANALYZE=true npm run build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"security-audit": "npm audit --audit-level moderate",
"format-check": "prettier --check .",
"format-fix": "prettier --write .",
"ci:basic": "npm run type-check && npm run test",
"ci:quick": "npm run ci:basic && npm run security-audit",
"ci:pre-commit": "npm run ci:basic && npm run lint",
"ci:pre-push": "npm run ci:pre-commit && npm run security-audit && npm run build:no-lint"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@next/third-parties": "^16.1.6",
"@prisma/client": "^6.6.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-tooltip": "^1.1.8",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.71.10",
"@types/uuid": "^10.0.0",
"@vercel/speed-insights": "^1.2.0",
"@vitalets/google-translate-api": "^9.2.1",
"@yoopta/action-menu-list": "^4.9.9",
"@yoopta/blockquote": "^4.9.9",
"@yoopta/callout": "^4.9.9",
"@yoopta/code": "^4.9.9",
"@yoopta/editor": "^4.9.9",
"@yoopta/embed": "^4.9.9",
"@yoopta/exports": "^4.9.9",
"@yoopta/headings": "^4.9.9",
"@yoopta/image": "^4.9.9",
"@yoopta/link": "^4.9.9",
"@yoopta/link-tool": "^4.9.9",
"@yoopta/lists": "^4.9.9",
"@yoopta/marks": "^4.9.9",
"@yoopta/paragraph": "^4.9.9",
"@yoopta/table": "^4.9.9",
"@yoopta/toolbar": "^4.9.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.6",
"jsonwebtoken": "^9.0.2",
"katex": "^0.16.22",
"lodash": "^4.17.21",
"lucide-react": "^0.485.0",
"next": "^15.5.9",
"pinyin": "^4.0.0-alpha.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-easy-crop": "^5.5.0",
"react-hook-form": "^7.55.0",
"slate": "^0.102.0",
"slate-react": "^0.102.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.3.6",
"use-debounce": "^10.0.5",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.4.6",
"@swc/jest": "^0.2.37",
"@tailwindcss/postcss": "^4.1.3",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.16",
"@types/node": "^20",
"@types/pinyin": "^2.10.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"postcss": "^8.5.3",
"prettier": "^3.6.2",
"prisma": "^6.6.0",
"supabase": "^2.33.9",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}