mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
75 lines
2.3 KiB
JSON
75 lines
2.3 KiB
JSON
{
|
|
"name": "docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "rm -rf ./docs/api && docusaurus start",
|
|
"build": "bash vercel_build.sh && rm -rf ./build && docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
"lint": "eslint --cache \"**/*.js\"",
|
|
"lint:fix": "yarn lint --fix",
|
|
"precommit": "lint-staged",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
|
|
"gen": "yarn gen:supabase",
|
|
"gen:supabase": "npx supabase gen types typescript --project-id 'xsqpnijvmbodcxyapnyq' --schema public > ./src/supabase.d.ts",
|
|
"check-broken-links": "bash vercel_build.sh && node ./scripts/check-broken-links.js"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.4.3",
|
|
"@docusaurus/preset-classic": "2.4.3",
|
|
"@docusaurus/remark-plugin-npm2yarn": "^2.4.3",
|
|
"@docusaurus/theme-mermaid": "2.4.3",
|
|
"@mdx-js/react": "^1.6.22",
|
|
"@supabase/supabase-js": "^2.39.7",
|
|
"clsx": "^1.2.1",
|
|
"cookie": "^0.6.0",
|
|
"json-loader": "^0.5.7",
|
|
"process": "^0.11.10",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"typescript": "^5.1.3",
|
|
"webpack": "^5.75.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.18.2",
|
|
"@langchain/scripts": "^0.0.9",
|
|
"docusaurus-plugin-typedoc": "next",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jsx-a11y": "^6.6.0",
|
|
"eslint-plugin-react": "^7.30.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"prettier": "^2.7.1",
|
|
"supabase": "^1.148.6",
|
|
"typedoc": "^0.24.4",
|
|
"typedoc-plugin-markdown": "next",
|
|
"yaml-loader": "^0.8.0"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|