-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.5 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "docs",
"version": "1.22.22",
"private": true,
"packageManager": "yarn@1.22.19",
"scripts": {
"docusaurus": "docusaurus",
"test": "jest",
"start": "rm -rf ./docs/api && docusaurus start",
"build": "make vercel-build",
"vercel-build": "ls .; cat Makefile; make vercel-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"
},
"dependencies": {
"@docusaurus/core": "3.5.2",
"@docusaurus/plugin-google-tag-manager": "3.5.2",
"@docusaurus/preset-classic": "3.5.2",
"@docusaurus/remark-plugin-npm2yarn": "^3.5.2",
"@docusaurus/theme-common": "^3.7.0",
"@docusaurus/theme-mermaid": "3.5.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mdx-js/react": "^3.0.0",
"@mui/icons-material": "^5.11.16",
"@mui/joy": "^5.0.0-alpha.81",
"@scalar/docusaurus": "^0.7.41",
"@supabase/supabase-js": "^2.39.7",
"clsx": "^1.2.1",
"dedent": "^1.5.3",
"dompurify": "^3.4.11",
"isomorphic-dompurify": "2.17.0",
"json-loader": "^0.5.7",
"marked": "^12.0.1",
"prettier": "^2.7.1",
"prism-react-renderer": "^2.1.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.104.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@docusaurus/module-type-aliases": "^2.4.1",
"@tsconfig/docusaurus": "^1.0.7",
"@types/jest": "^29.5.3",
"docusaurus-plugin-typedoc": "^1.0.0-next.30",
"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",
"jest": "^29.6.2",
"langchain": "^0.3.37",
"langsmith": "^0.6.0",
"supabase": "^2.76.14",
"ts-jest": "^29.1.1",
"typedoc": "^0.27.9",
"typedoc-plugin-markdown": "^4.0.0-next.60",
"typescript": "^5.1.6"
},
"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": ">=20"
},
"resolutions": {
"form-data": ">=4.0.4",
"qs": ">=6.14.1",
"node-forge": ">=1.3.2",
"image-size": "1.2.1",
"**/minimatch": "3.1.4",
"typedoc/minimatch": "9.0.7",
"**/filelist/minimatch": "5.1.8",
"tar": ">=7.5.11",
"svgo": ">=3.3.3",
"serialize-javascript": ">=7.0.5",
"dompurify": ">=3.3.2",
"gray-matter/js-yaml": "3.14.2",
"@supabase/auth-js": ">=2.69.1",
"express/path-to-regexp": "0.1.13",
"on-headers": ">=1.1.0",
"webpack-dev-server": ">=5.2.1",
"langsmith": ">=0.5.19",
"**/cosmiconfig/yaml": "1.10.3",
"**/langchain/yaml": "2.8.3",
"**/typedoc/yaml": "2.8.3"
}
}