-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.4 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "website",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"docs/**/*.{md,mdx}": [
"markdownlint-cli2 --fix"
],
"*.{json,md,mdx,css,yaml,yml}": [
"prettier --write"
]
},
"dependencies": {
"gray-matter": "^4.0.3",
"next": "16.2.6",
"next-mdx-remote": "^6.0.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"remark-gfm": "^4.0.1"
},
"pnpm": {
"ignoredBuiltDependencies": [
"sharp",
"unrs-resolver"
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3",
"tailwindcss": "^4",
"typescript": "^6",
"vitest": "^4.1.6"
}
}