mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
ae15f3cdc5
* refactor: align header columns * refactor: improve scrollbar visibility * refactor: center align table elements * refactor: make param elements stateful * fix: issue with collapsed elements not loosing value * fix: prevent search params containing multiple alias references * fix: the issue where a file disappears if it is both migrated and recovered in the same load operation (#1744) * refactor: disable group action for elements in groups * refactor: move context menu items into the event element (#1747) * feat: sheet import new features for v4 (#1730) * import milestone * fixup! import milestone * test: milestone import * add entries to group stop on new group or on group-end type * fixup! add entries to group * cleanup * add event target duration * link start if undefined * add skip import type * extract some to the excel paresing functions * tweaks to presentation * move file --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * fix: notify runtimeStore of events bieng groupd * fix: improve authentication and stage detection in demo * chore: ship logo with project * fix: client is referenced by name * fix: prevent reflow in event editor * fix: stale render on selected event due to ref mismatch * Create/Load/Delete multiple rundowns (#1696) * refactor: restore last loaded rundown * refactor: initialise rundown in ProjectService * feat: allow switching rundowns ensure on coordination between the db object and the working object server provide list of rundowns implement switch in the UI implement delete implement new rundown button * fix: render order for floating button * refactor: appropriate names to service * refactor: rundown endpoints * refactor: save last loaded rundown ID * refactor: rundown management UI * refactor: emit refetch all on project load --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * feat: recover single event subscription * fixup! feat: sheet import new features for v4 (#1730) * fix: prevent dropping a group inside another * fixup! refactor: move context menu items into the event element (#1747) * fix: prevent stale references to custom fields * fix: propagate updates to all rundowns * refactor: client rundown metadata (#1728) * generate metadata in the hook * move test * ensure there is always a last element * use for-loop * update metadata in useEfect * fully extract metadata generation * use direct assignment * cleanup --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * refactor: small imporvement and tests for coerce functions (#1752) * refactor: small imporvement and tests for coerce functions add test `coerceString` add test `coerceBoolean` add test `coerceColour` * remove old todo * fix: consistent quick add behaviour * refactor: create flat rundown with metadata * fix: show add buttons on top * feat: allow editing milestones * refactor: style tweaks to rundown elements refactor: milestones are full width refactor: cuesheet header alignment fix: editor styling in cuesheet * refactor: virtualise table * refactor: improve overscan (#1758) * bump version to 4.0.0-alpha.5 --------- Co-authored-by: Alex Christoffer Rasmussen <ac@omnivox.dk>
68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "ontime-server",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"version": "4.0.0-alpha.5",
|
|
"exports": "./src/index.js",
|
|
"dependencies": {
|
|
"@googleapis/sheets": "^5.0.5",
|
|
"cookie": "1.0.2",
|
|
"cookie-parser": "1.4.7",
|
|
"cors": "2.8.5",
|
|
"dotenv": "^16.0.1",
|
|
"express": "5.1.0",
|
|
"express-static-gzip": "3.0.0",
|
|
"express-validator": "7.2.1",
|
|
"multer": "2.0.1",
|
|
"fast-equals": "^5.0.1",
|
|
"google-auth-library": "^9.4.2",
|
|
"lowdb": "^7.0.1",
|
|
"ontime-utils": "workspace:*",
|
|
"osc-min": "2.1.2",
|
|
"sanitize-filename": "^1.6.3",
|
|
"steno": "^4.0.2",
|
|
"ws": "^8.18.0",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cookie-parser": "1.4.9",
|
|
"@types/cors": "2.8.19",
|
|
"@types/express": "5.0.3",
|
|
"@types/multer": "1.4.13",
|
|
"@types/node": "catalog:",
|
|
"@types/websocket": "^1.0.5",
|
|
"@types/ws": "^8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "catalog:",
|
|
"@typescript-eslint/parser": "catalog:",
|
|
"esbuild": "^0.24.0",
|
|
"eslint": "catalog:",
|
|
"eslint-plugin-prettier": "catalog:",
|
|
"ontime-types": "workspace:*",
|
|
"prettier": "catalog:",
|
|
"server-timing": "^3.3.3",
|
|
"shx": "^0.3.4",
|
|
"ts-essentials": "^10.0.3",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"scripts": {
|
|
"addversion": "node -p \"'export const ONTIME_VERSION = ' + JSON.stringify(require('../../package.json').version) + ';'\" > src/ONTIME_VERSION.js",
|
|
"postinstall": "pnpm addversion",
|
|
"dev": "cross-env NODE_ENV=development tsx watch ./src/index.ts",
|
|
"dev:inspect": "cross-env NODE_ENV=development tsx watch --inspect ./src/index.ts",
|
|
"dev:test": "cross-env IS_TEST=true tsx ./src/index.ts",
|
|
"prebuild": "tsx ./scripts/bundleCss.ts",
|
|
"build": "node esbuild.electron.js",
|
|
"build:electron": "node esbuild.electron.js",
|
|
"build:local": "node esbuild.dev.js",
|
|
"build:docker": "node esbuild.docker.js",
|
|
"build:localdocker": "cross-env NODE_ENV=local node esbuild.docker.js",
|
|
"lint": "eslint . --quiet",
|
|
"test": "cross-env IS_TEST=true vitest",
|
|
"test:pipeline": "cross-env IS_TEST=true vitest run",
|
|
"typecheck": "tsc --noEmit",
|
|
"cleanup": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
}
|
|
}
|