-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 850 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 850 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
{
"name": "scrapbox-nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run fetch-page",
"dev": "next dev",
"prebuild": "npm run fetch-page",
"build": "next build",
"start": "serve out -l 3000",
"lint": "next lint",
"fetch-page": "bash ./scripts/fetchScrapboxPages.sh"
},
"dependencies": {
"@progfay/scrapbox-parser": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"next": "15.5.10",
"playwright-aws-lambda": "^0.11.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"serve": "^14.2.1"
},
"devDependencies": {
"@types/node": "24.10.13",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"eslint": "^8.56.0",
"eslint-config-next": "15.5.12",
"typescript": "5.9.3"
}
}