-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"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 && touch out/.nojekyll",
"lint": "eslint . --max-warnings=0",
"type-check": "tsc",
"deploy": "gh-pages -d out -t",
"prepare": "husky install"
},
"dependencies": {
"next": "16.2.4",
"next-seo": "7",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "25.6.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "9",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "5.9.3"
},
"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"
}