-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 KB
/
package.json
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
{
"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",
"start": "next start",
"lint": "next lint --fix",
"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'"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"lucide-react": "^0.412.0",
"next": "14.0.0",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18",
"react-dom": "^18",
"shiki": "^0.14.3"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@types/bun": "^1.0.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.0.0",
"glob": "^11.0.0",
"lefthook": "^1.6.1",
"markdown-link-extractor": "^4.0.2",
"openapi-sampler": "^1.4.0",
"openapi-types": "^12.1.3",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3",
"typescript": "^5"
}
}