Merge remote-tracking branch 'origin/develop' into staging

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2024-12-25 10:09:29 +07:00
41 changed files with 1120 additions and 1548 deletions
+1032 -1463
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -5,7 +5,7 @@
"format": "echo \"No format specified\""
},
"devDependencies": {
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"sharp": "~0.32.0"
},
"private": true
+1 -1
View File
@@ -58,7 +58,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"esbuild-loader": "^4.0.3",
"svelte-preprocess": "^5.1.3",
"@types/ws": "^8.5.11"
+1 -1
View File
@@ -33,7 +33,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/minio": "~7.0.11",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
+1 -1
View File
@@ -36,7 +36,7 @@
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
"typescript": "^5.3.3",
+1 -1
View File
@@ -47,7 +47,7 @@
"fork-ts-checker-webpack-plugin": "^9.0.2",
"update-browserslist-db": "^1.1.0",
"browserslist": "^4.23.3",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"esbuild-loader": "^4.0.3",
"typescript": "^5.3.3",
"svelte-preprocess": "^5.1.3"
+1 -1
View File
@@ -41,7 +41,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/minio": "~7.0.11",
"@types/node": "~20.11.16",
"@typescript-eslint/parser": "^6.11.0",
+1 -1
View File
@@ -31,7 +31,7 @@
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"esbuild": "^0.20.0"
"esbuild": "^0.24.2"
},
"dependencies": {
"@hcengineering/model": "^0.6.11",
+1 -1
View File
@@ -30,7 +30,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+2 -1
View File
@@ -172,6 +172,7 @@ async function performESBuild(filesToTranspile) {
sourcemap: 'linked',
allowOverwrite: true,
format: 'cjs',
color: true,
plugins: [
copy({
// this is equal to process.cwd(), which means we use cwd path as base path to resolve `to` path
@@ -181,7 +182,7 @@ async function performESBuild(filesToTranspile) {
from: [args[1] + '/**/*.json'],
to: ['./lib'],
},
watch: true,
watch: false
})
]
})
+2 -2
View File
@@ -8,8 +8,8 @@
"devDependencies": {
"eslint-config-standard-with-typescript": "^40.0.0",
"svelte-eslint-parser": "^0.33.1",
"esbuild": "^0.20.0",
"esbuild-svelte": "^0.8.0",
"esbuild": "^0.24.2",
"esbuild-svelte": "^0.9.0",
"esbuild-plugin-copy": "~2.1.1"
},
"dependencies": {
+6 -4
View File
@@ -54,14 +54,13 @@ let prevTabId: Ref<WorkbenchTab> | undefined
tabIdStore.subscribe((value) => {
prevTabIdStore.set(prevTabId)
prevTabId = value
saveTabToLocalStorage(value)
})
locationWorkspaceStore.subscribe((workspace) => {
tabIdStore.set(getTabFromLocalStorage(workspace ?? ''))
})
tabIdStore.subscribe(saveTabToLocalStorage)
const syncTabLoc = reduceCalls(async (): Promise<void> => {
const loc = getCurrentLocation()
const workspace = get(locationWorkspaceStore)
@@ -84,11 +83,14 @@ const syncTabLoc = reduceCalls(async (): Promise<void> => {
if (t.name !== name) return false
const tabLoc = getTabLocation(t)
if (tabLoc.path[2] !== loc.path[2]) return false
if (tabLoc.path[2] === notificationId) return true
return tabLoc.path[2] === loc.path[2] && tabLoc.path[3] === loc.path[3]
return tabLoc.path[3] === loc.path[3]
})
if (tab.name !== undefined && name !== tab.name && tab.isPinned) {
if (get(tabIdStore) !== tab._id) return
if (tabByName !== undefined) {
selectTab(tabByName._id)
return
@@ -127,7 +129,7 @@ const syncTabLoc = reduceCalls(async (): Promise<void> => {
}
})
locationStore.subscribe((l: Location) => {
locationStore.subscribe(() => {
void syncTabLoc()
})
+1 -1
View File
@@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
+1 -1
View File
@@ -38,7 +38,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -36,7 +36,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -43,7 +43,7 @@
"@types/express-fileupload": "^1.1.7",
"@types/uuid": "^8.3.1",
"@types/cors": "^2.8.12",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"@types/body-parser": "~1.19.2",
+1 -1
View File
@@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -42,7 +42,7 @@
"eslint-config-prettier": "^8.8.0",
"@types/ws": "^8.5.11",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -36,7 +36,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
+1 -1
View File
@@ -37,7 +37,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -27,7 +27,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
+1 -1
View File
@@ -30,7 +30,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -27,7 +27,7 @@
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"ts-node": "^10.8.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -26,7 +26,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa": "^2.15.0",
+3 -3
View File
@@ -40,9 +40,9 @@
},
"dependencies": {
"@deepgram/sdk": "^3.9.0",
"@livekit/agents": "^0.5.1",
"@livekit/rtc-node": "^0.12.1",
"@livekit/agents-plugin-openai": "^0.7.1",
"@livekit/agents": "^0.6.0",
"@livekit/rtc-node": "^0.12.2",
"@livekit/agents-plugin-openai": "^0.7.3",
"dotenv": "^16.4.5"
}
}
+39 -39
View File
@@ -15,14 +15,14 @@ importers:
specifier: ^3.9.0
version: 3.9.0
'@livekit/agents':
specifier: ^0.5.1
version: 0.5.1(@livekit/rtc-node@0.12.1)
specifier: ^0.6.0
version: 0.6.0(@livekit/rtc-node@0.12.2)
'@livekit/agents-plugin-openai':
specifier: ^0.7.1
version: 0.7.1(@livekit/agents@0.5.1(@livekit/rtc-node@0.12.1))(@livekit/rtc-node@0.12.1)(zod@3.24.1)
specifier: ^0.7.3
version: 0.7.3(@livekit/agents@0.6.0(@livekit/rtc-node@0.12.2))(@livekit/rtc-node@0.12.2)(zod@3.24.1)
'@livekit/rtc-node':
specifier: ^0.12.1
version: 0.12.1
specifier: ^0.12.2
version: 0.12.2
dotenv:
specifier: ^16.4.5
version: 16.4.7
@@ -357,14 +357,14 @@ packages:
cpu: [x64]
os: [win32]
'@livekit/agents-plugin-openai@0.7.1':
resolution: {integrity: sha512-qkrS7is/vSO0JnMp9LdoPNEjeefK451hh9byzzDg4PcfaapFIR2+WLKKrFqP8eKNMB4/7nc7ThN26Z5Jr4mRZQ==}
'@livekit/agents-plugin-openai@0.7.3':
resolution: {integrity: sha512-HOUXNNbiFVcEOLTN3PLuK5CqBuSyVr4sEubwR2TuYOHfjVI/1pGOprEMXGLgTPWvvSh0tmgZVOK0N7XdpqBIzg==}
peerDependencies:
'@livekit/agents': ^0.5.1x
'@livekit/agents': ^0.6.0x
'@livekit/rtc-node': ^0.12.1
'@livekit/agents@0.5.1':
resolution: {integrity: sha512-EKP/UrSQ3HePqCKiFmjTAVNRVtE+SdN2vtka0F9J3Te+ZynpHoSbLgT8dyzFrliYRzIh4fZW7groHhiMux6Wvw==}
'@livekit/agents@0.6.0':
resolution: {integrity: sha512-xjfJRYepU2kdCcCdbstYFg0LtXLDQhgN+9yC68P4LVg8bBjfv+8hZDUgRnA2HVAib2rpypVTR3pqKWWCLSwzIg==}
peerDependencies:
'@livekit/rtc-node': ^0.12.1
@@ -374,38 +374,38 @@ packages:
'@livekit/protocol@1.29.4':
resolution: {integrity: sha512-dsqxvABHilrMA0BU5m1w8cMWSVeDjV2ZUIUDClNQZju3c30DLMfEYDHU5nmXDfaaHjNIgoRbYR7upJMozG8JJg==}
'@livekit/rtc-node-darwin-arm64@0.12.1':
resolution: {integrity: sha512-GF+QnRp7yBK4AyeG3eZiuAzbQOH4+bkLSyTgb5A1CzGEca2XD5CSgKUeGtIgIglq0XmYzN6bvl260xUWPl0WCQ==}
'@livekit/rtc-node-darwin-arm64@0.12.2':
resolution: {integrity: sha512-oqr6VUNtmoRgRpL51QiCAY2UCYe7xUPtxhlp47MPHgKwMeujHcFbjWcL5Q4ZX5qjTvwnXpl8AaWEn1cl4gYStQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@livekit/rtc-node-darwin-x64@0.12.1':
resolution: {integrity: sha512-uORO+/W5jvCfuFcmzQ4q5WCgJX5EW7eUxgfUHSaIuzcwgxBxG4yagWDl9WkK6MY9V1j6fhAiNlJ3hPl8cYGUjA==}
'@livekit/rtc-node-darwin-x64@0.12.2':
resolution: {integrity: sha512-FNIA8Mum8Wf+gHHFXmWel/+UJ0IR/0MPYIIv4/dB2o9h8TdeFxaIZsHQLejkIt93eb0fYS1CmRz+pq/AmvCa3g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@livekit/rtc-node-linux-arm64-gnu@0.12.1':
resolution: {integrity: sha512-8LIHq0nSwCjUMVPNfrohupH2ynhEFcYmidYa1KmHLkVlW+gyXBfy+QE7voAbXhTSbLZLDX58N5KGCQa61LSVAA==}
'@livekit/rtc-node-linux-arm64-gnu@0.12.2':
resolution: {integrity: sha512-XGFbLDJapLIVBU0Ka6kmXiZfrGjLliSA0PgceKhMG2Tz2r+xjGCDPMrPT3ViwISVpcfFdY3pr4Fgg0m6tLwviQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@livekit/rtc-node-linux-x64-gnu@0.12.1':
resolution: {integrity: sha512-8x5IKzcTmwGyy0I0CU5vzealCl7c0Fp4KMBakq/uUOavbh/Rs1nAsjT8flrXC09F4njXD1E9uYN6CMTN9uZeKw==}
'@livekit/rtc-node-linux-x64-gnu@0.12.2':
resolution: {integrity: sha512-qEGJ49bXrhH/ob8+BpfldP5GikgsT5QmL1pHX6vo3HyNyDUx8crW7wA5K1SI0LfYBEw6nI3T9GDwPURymASUKg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@livekit/rtc-node-win32-x64-msvc@0.12.1':
resolution: {integrity: sha512-zPbvUnpHdDlkEW3AN8wIqa3Wwae26MV/gQmqmP+3AjZRog8hMZy9Fe48lJgZR6VobjFjw99wSgIytYZCdIOUqQ==}
'@livekit/rtc-node-win32-x64-msvc@0.12.2':
resolution: {integrity: sha512-HrAv+qEkaENoPyfFzSlsze6Mn6/QhWnxm2Jjx0hIx5Jd8eKpNfyG3BOUIn5jLZgCfNmSRr0M7hCnhVf9h5AuoA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@livekit/rtc-node@0.12.1':
resolution: {integrity: sha512-VNRobdI/CmZ8mVUV105uqFOH7BMDmK8VsNq4GrpWAdXKnQMVKoAjLmvFU2LVQMKP4qE9BG3aTi59BGYt/PCLiA==}
'@livekit/rtc-node@0.12.2':
resolution: {integrity: sha512-sLiLnB/4HGlUcFyMKCZVLi4VFeMHz6fO93XLyqWoe8rwn73yHu1/DnVrD80IP77+eXHnZopqJxyYsGmfa+/btw==}
engines: {node: '>= 18'}
'@livekit/typed-emitter@3.0.0':
@@ -1911,10 +1911,10 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
'@livekit/agents-plugin-openai@0.7.1(@livekit/agents@0.5.1(@livekit/rtc-node@0.12.1))(@livekit/rtc-node@0.12.1)(zod@3.24.1)':
'@livekit/agents-plugin-openai@0.7.3(@livekit/agents@0.6.0(@livekit/rtc-node@0.12.2))(@livekit/rtc-node@0.12.2)(zod@3.24.1)':
dependencies:
'@livekit/agents': 0.5.1(@livekit/rtc-node@0.12.1)
'@livekit/rtc-node': 0.12.1
'@livekit/agents': 0.6.0(@livekit/rtc-node@0.12.2)
'@livekit/rtc-node': 0.12.2
openai: 4.76.2(zod@3.24.1)
sharp: 0.33.5
ws: 8.18.0
@@ -1924,11 +1924,11 @@ snapshots:
- utf-8-validate
- zod
'@livekit/agents@0.5.1(@livekit/rtc-node@0.12.1)':
'@livekit/agents@0.6.0(@livekit/rtc-node@0.12.2)':
dependencies:
'@livekit/mutex': 1.1.1
'@livekit/protocol': 1.29.4
'@livekit/rtc-node': 0.12.1
'@livekit/rtc-node': 0.12.2
'@livekit/typed-emitter': 3.0.0
commander: 12.1.0
livekit-server-sdk: 2.8.1
@@ -1946,32 +1946,32 @@ snapshots:
dependencies:
'@bufbuild/protobuf': 1.10.0
'@livekit/rtc-node-darwin-arm64@0.12.1':
'@livekit/rtc-node-darwin-arm64@0.12.2':
optional: true
'@livekit/rtc-node-darwin-x64@0.12.1':
'@livekit/rtc-node-darwin-x64@0.12.2':
optional: true
'@livekit/rtc-node-linux-arm64-gnu@0.12.1':
'@livekit/rtc-node-linux-arm64-gnu@0.12.2':
optional: true
'@livekit/rtc-node-linux-x64-gnu@0.12.1':
'@livekit/rtc-node-linux-x64-gnu@0.12.2':
optional: true
'@livekit/rtc-node-win32-x64-msvc@0.12.1':
'@livekit/rtc-node-win32-x64-msvc@0.12.2':
optional: true
'@livekit/rtc-node@0.12.1':
'@livekit/rtc-node@0.12.2':
dependencies:
'@bufbuild/protobuf': 2.2.3
'@livekit/mutex': 1.1.1
'@livekit/typed-emitter': 3.0.0
optionalDependencies:
'@livekit/rtc-node-darwin-arm64': 0.12.1
'@livekit/rtc-node-darwin-x64': 0.12.1
'@livekit/rtc-node-linux-arm64-gnu': 0.12.1
'@livekit/rtc-node-linux-x64-gnu': 0.12.1
'@livekit/rtc-node-win32-x64-msvc': 0.12.1
'@livekit/rtc-node-darwin-arm64': 0.12.2
'@livekit/rtc-node-darwin-x64': 0.12.2
'@livekit/rtc-node-linux-arm64-gnu': 0.12.2
'@livekit/rtc-node-linux-x64-gnu': 0.12.2
'@livekit/rtc-node-win32-x64-msvc': 0.12.2
'@livekit/typed-emitter@3.0.0': {}
+1 -1
View File
@@ -29,7 +29,7 @@ const config: Config = (() => {
DeepgramApiKey: process.env.DEEPGRAM_API_KEY,
PlatformUrl: process.env.PLATFORM_URL,
PlatformToken: process.env.PLATFORM_TOKEN,
OpenaiApiKey: process.env.OPENAI_API_KEY,
OpenaiApiKey: process.env.OPENAI_API_KEY ?? '',
OpenaiBaseUrl: process.env.OPENAI_BASE_URL ?? '',
SttProvider: (process.env.STT_PROVIDER as SttProvider) ?? 'deepgram'
}
+1 -1
View File
@@ -39,7 +39,7 @@
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
@@ -37,7 +37,7 @@
"@types/node": "~20.11.16",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -41,7 +41,7 @@
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.5",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -38,7 +38,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"@typescript-eslint/parser": "^6.11.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"prettier": "^3.1.0",
+1 -1
View File
@@ -37,7 +37,7 @@
"@types/node": "~20.11.16",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -42,7 +42,7 @@
"@types/jest": "^29.5.5",
"@types/uuid": "^8.3.1",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -39,7 +39,7 @@
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -62,7 +62,7 @@
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint-plugin-n": "^15.4.0",
"prettier": "^3.1.0",
"@types/morgan": "~1.9.9"
+1 -1
View File
@@ -39,7 +39,7 @@
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-n": "^15.4.0",
"eslint": "^8.54.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"prettier": "^3.1.0",
"ts-node": "^10.8.0",
"typescript": "^5.3.3",
+1 -1
View File
@@ -38,7 +38,7 @@
"@types/node": "~20.11.16",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
@@ -39,7 +39,7 @@
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.26.0",
+1 -1
View File
@@ -37,7 +37,7 @@
"@types/mime": "^3.0.1",
"@types/node": "~20.11.16",
"@types/ws": "^8.5.11",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"prettier": "^3.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
+1 -1
View File
@@ -28,7 +28,7 @@
"fork-ts-checker-webpack-plugin": "^9.0.2",
"update-browserslist-db": "^1.1.0",
"browserslist": "^4.23.3",
"esbuild": "^0.20.0",
"esbuild": "^0.24.2",
"esbuild-loader": "^4.0.3",
"typescript": "^5.3.3",
"svelte-preprocess": "^5.1.3"
+2 -2
View File
@@ -20,7 +20,7 @@
"_phase:build": "compile transpile src",
"_phase:test": "jest --passWithNoTests --silent --forceExit",
"_phase:format": "format src",
"_phase:validate": "compile validate"
"_phase:validate": "rushx bundle && compile validate"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
@@ -39,7 +39,7 @@
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"wrangler": "^3.97.0",
"esbuild": "^0.20.0"
"esbuild": "^0.24.2"
},
"dependencies": {
"@hcengineering/core": "^0.6.32",