parent
93cf47ce40
commit
bde9e543d4
|
|
@ -97,7 +97,7 @@
|
||||||
"multer": "^1.4.5-lts.1",
|
"multer": "^1.4.5-lts.1",
|
||||||
"multer-s3": "^3.0.1",
|
"multer-s3": "^3.0.1",
|
||||||
"mysql2": "^3.11.3",
|
"mysql2": "^3.11.3",
|
||||||
"nim-container-manager": "^1.0.4",
|
"nim-container-manager": "^1.0.5",
|
||||||
"openai": "^4.82.0",
|
"openai": "^4.82.0",
|
||||||
"pg": "^8.11.1",
|
"pg": "^8.11.1",
|
||||||
"posthog-node": "^3.5.0",
|
"posthog-node": "^3.5.0",
|
||||||
|
|
|
||||||
|
|
@ -14,13 +14,15 @@
|
||||||
"@emotion/cache": "^11.4.0",
|
"@emotion/cache": "^11.4.0",
|
||||||
"@emotion/react": "^11.10.6",
|
"@emotion/react": "^11.10.6",
|
||||||
"@emotion/styled": "^11.10.6",
|
"@emotion/styled": "^11.10.6",
|
||||||
|
"@lezer/highlight": "^1.2.1",
|
||||||
"@microsoft/fetch-event-source": "^2.0.1",
|
"@microsoft/fetch-event-source": "^2.0.1",
|
||||||
"@mui/base": "5.0.0-beta.40",
|
"@mui/base": "5.0.0-beta.40",
|
||||||
"@mui/icons-material": "5.0.3",
|
"@mui/icons-material": "5.0.3",
|
||||||
"@mui/lab": "5.0.0-alpha.156",
|
"@mui/lab": "5.0.0-alpha.156",
|
||||||
"@mui/material": "5.15.0",
|
"@mui/material": "5.15.0",
|
||||||
|
"@mui/system": "^6.4.3",
|
||||||
"@mui/x-data-grid": "6.8.0",
|
"@mui/x-data-grid": "6.8.0",
|
||||||
"@tabler/icons-react": "^3.3.0",
|
"@tabler/icons-react": "^3.30.0",
|
||||||
"@uiw/codemirror-theme-sublime": "^4.21.21",
|
"@uiw/codemirror-theme-sublime": "^4.21.21",
|
||||||
"@uiw/codemirror-theme-vscode": "^4.21.21",
|
"@uiw/codemirror-theme-vscode": "^4.21.21",
|
||||||
"@uiw/react-codemirror": "^4.21.21",
|
"@uiw/react-codemirror": "^4.21.21",
|
||||||
|
|
|
||||||
|
|
@ -18,12 +18,23 @@ export default defineConfig(async ({ mode }) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dotenv.config()
|
dotenv.config()
|
||||||
return {
|
return {
|
||||||
plugins: [react()],
|
plugins: [react()],
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'@': resolve(__dirname, 'src')
|
'@': resolve(__dirname, 'src'),
|
||||||
|
'@codemirror/state': resolve(__dirname, '../../node_modules/@codemirror/state'),
|
||||||
|
'@codemirror/view': resolve(__dirname, '../../node_modules/@codemirror/view'),
|
||||||
|
'@codemirror/language': resolve(__dirname, '../../node_modules/@codemirror/language'),
|
||||||
|
'@codemirror/lang-javascript': resolve(__dirname, '../../node_modules/@codemirror/lang-javascript'),
|
||||||
|
'@codemirror/lang-json': resolve(__dirname, '../../node_modules/@codemirror/lang-json'),
|
||||||
|
'@uiw/react-codemirror': resolve(__dirname, '../../node_modules/@uiw/react-codemirror'),
|
||||||
|
'@uiw/codemirror-theme-vscode': resolve(__dirname, '../../node_modules/@uiw/codemirror-theme-vscode'),
|
||||||
|
'@uiw/codemirror-theme-sublime': resolve(__dirname, '../../node_modules/@uiw/codemirror-theme-sublime'),
|
||||||
|
'@lezer/common': resolve(__dirname, '../../node_modules/@lezer/common'),
|
||||||
|
'@lezer/highlight': resolve(__dirname, '../../node_modules/@lezer/highlight')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
root: resolve(__dirname),
|
root: resolve(__dirname),
|
||||||
|
|
|
||||||
475
pnpm-lock.yaml
475
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue