-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"prebuild": "tsx scripts/prebuild-content.ts",
"build": "npm run prebuild && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"dev:setup": "cp .env.local.example .env.local || copy .env.local.example .env.local",
"clean": "rm -rf .next .content-cache.json || rmdir /s /q .next"
},
"dependencies": {
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.0.9",
"geist": "1.2.2",
"katex": "^0.16.9",
"marked": "^17.0.1",
"next": "^14.2.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/katex": "^0.16.8",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"vitest": "^4.0.18"
},
"overrides": {
"katex": "^0.16.9"
}
}