-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "brasa-docs",
"version": "1.0.0",
"description": "Brasa LST documentation site",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind",
"start": "next start",
"export": "next build",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,json,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,json,css}\"",
"prepare": "husky"
},
"dependencies": {
"next": "15.5.12",
"nextra": "^4.0.0",
"nextra-theme-docs": "^4.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shiki": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.4",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"pagefind": "^1.2.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.14.0"
}