-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.42 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.42 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
64
65
66
{
"name": "golem-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "lefthook install",
"dev": "next dev",
"build:check": "lefthook run pre-build",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"start": "next start",
"lint": "eslint --fix ./src",
"format": "prettier --log-level silent --write ./src",
"check-links": "bun ./check-links/check-links.ts",
"fix": "concurrently -m 1 'npm run lint' 'npm run format'",
"generate-local": "concurrently -m 1 'bun run openapi/gen-openapi.ts --local' 'bun run fix'",
"generate-dev": "concurrently -m 1 'bun run openapi/gen-openapi.ts --dev' 'bun run fix'",
"generate-prod": "concurrently -m 1 'bun run openapi/gen-openapi.ts --prod' 'bun run fix'",
"update-skills": "bun run skills/sync-skills.ts",
"update-skills-local": "bun run skills/sync-skills.ts --local",
"snippets:scan": "bun run snippets/manage-snippets.ts scan",
"snippets:status": "bun run snippets/manage-snippets.ts status",
"snippets:next": "bun run snippets/manage-snippets.ts next",
"snippets:list": "bun run snippets/manage-snippets.ts list",
"snippets:prompt": "bun run snippets/manage-snippets.ts prompt",
"snippets:complete": "bun run snippets/manage-snippets.ts complete",
"snippets:skip": "bun run snippets/manage-snippets.ts skip",
"snippets:loop": "bun run snippets/run-loop.ts"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"lucide-react": "^1.9.0",
"next": "^16.2.4",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@types/bun": "^1.3.13",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "^16.2.4",
"glob": "^11.0.0",
"lefthook": "^2.1.6",
"markdown-link-extractor": "^4.0.2",
"mdast-util-to-string": "^4.0.0",
"openapi-sampler": "^1.7.2",
"openapi-types": "^12.1.3",
"pagefind": "^1.5.2",
"postcss": "^8",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"tailwindcss": "^3",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
}
}