-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 906 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 906 Bytes
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
{
"name": "kkcb",
"version": "1.1.10",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"media:check": "node scripts/check-raw-empty.mjs",
"version:check": "node scripts/check-version-bump.mjs",
"media:process": "node scripts/process-raw-assets.mjs",
"test": "npm run media:check && npm run version:check && vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^15.0.12",
"next": "^15.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"reading-time": "^1.5.0",
"sharp": "^0.34.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"playwright": "^1.59.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}