-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
{
"name": "documentation",
"version": "1.0.1",
"description": "documentation",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "next dev",
"develop": "pnpm dev",
"build": "next build && next-sitemap",
"export": "next export",
"start": "next start -p 3001",
"generate": "pnpm generate-openapi && pnpm generate-api-docs",
"generate-openapi": "esbuild --bundle --platform=node --target=esnext --outfile=dist/generateApi.js scripts/generateApi.ts && node dist/generateApi.js",
"generate-api-docs": "esbuild --bundle --platform=node --target=esnext --outfile=dist/generateApiDocumentationPage.js scripts/generateApiDocumentationPage.ts && node dist/generateApiDocumentationPage.js",
"analyse": "lhci autorun --url http://localhost:8000",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@botpress/api": "0.53.0",
"@botpress/webchat": "1.3.11",
"@heroicons/react": "^2.0.18",
"@types/user-agents": "^1.0.4",
"@vercel/og": "^0.5.0",
"classnames": "^2.3.2",
"esbuild": "^0.18.10",
"lodash": "^4.17.21",
"next": "^13.4.6",
"next-sitemap": "^4.2.3",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-use": "^17.5.0",
"sass": "^1.63.4",
"unleash-proxy-client": "^2.4.2",
"user-agents": "^1.1.184",
"zod": "^3.21.4"
},
"devDependencies": {
"@readme/openapi-parser": "^2.5.0",
"@svgr/webpack": "^8.0.1",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"openapi-types": "^12.1.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.0"
},
"packageManager": "[email protected]"
}