-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "reading-notes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "npx serve@latest out -s -l 3000",
"export": "next build --webpack && pagefind --site out --output-path out/_pagefind && touch out/.nojekyll",
"lint": "eslint . --max-warnings=0",
"type-check": "tsc",
"deploy": "gh-pages -d out -t",
"prepare": "husky install"
},
"dependencies": {
"next": "16.2.10",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "9",
"eslint-config-next": "^16.2.10",
"eslint-config-prettier": "^10.1.8",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"pagefind": "^1.5.2",
"prettier": "^3.9.4",
"typescript": "6.0.3"
},
"resolutions": {
"zod": "4.1.12"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --max-warnings=0",
"*.{js,jsx,ts,tsx,json,md,css,yml,yaml}": "prettier --write"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}