-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 846 Bytes
/
package.json
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": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"next": "15.0.3",
"playwright-aws-lambda": "^0.11.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"serve": "^14.2.1"
},
"devDependencies": {
"@types/node": "22.9.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "^8.56.0",
"eslint-config-next": "15.0.3",
"typescript": "5.6.3"
}
}