mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 06:28:01 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
29 lines
720 B
JSON
29 lines
720 B
JSON
{
|
|
"name": "ontime-utils",
|
|
"type": "module",
|
|
"exports": "./index.ts",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "shared logic for ontime",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "vitest",
|
|
"test:pipeline": "vitest run",
|
|
"cleanup": "rm -rf .turbo && rm -rf node_modules"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
"prettier": "^2.8.3",
|
|
"typescript": "^4.9.4",
|
|
"vitest": "^0.27.1"
|
|
}
|
|
}
|