mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 14:37:58 +00:00
03e7428348
* chore: cleanup handling of a bad read * chore: configure e2e testing * chore: version bump
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "ontime",
|
|
"version": "2.0.0-beta1",
|
|
"description": "Time keeping for live events",
|
|
"keywords": [
|
|
"lighdev",
|
|
"ontime",
|
|
"timer",
|
|
"rundown"
|
|
],
|
|
"author": "Carlos Valente",
|
|
"homepage": "https://www.getontime.no/",
|
|
"repository": "https://github.com/cpvalente/ontime",
|
|
"bugs": {
|
|
"url": "https://github.com/cpvalente/ontime/issues",
|
|
"email": "mail@getontime.no"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"engines": {
|
|
"node": "~16.16.0",
|
|
"pnpm": ">=7"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:electron": "turbo run dev --filter=ontime",
|
|
"dev:server": "turbo run dev --filter=ontime-server",
|
|
"build": "turbo run build",
|
|
"build:local": "turbo run build:local",
|
|
"dist-win": "turbo run dist-win",
|
|
"dist-mac": "turbo run dist-mac",
|
|
"dist-linux": "turbo run dist-linux",
|
|
"test": "vitest",
|
|
"e2e": "cross-env DEBUG=pw:webserver npx playwright test -c playwright.config.ts",
|
|
"cleanup": "rm -rf node_modules && rm -rf **/node_modules && rm -rf **/**/node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.32.1",
|
|
"@types/node": "^18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
"@typescript-eslint/parser": "^5.48.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-playwright": "^0.12.0",
|
|
"prettier": "^2.8.2",
|
|
"turbo": "^1.8.8",
|
|
"typescript": "^4.8.3"
|
|
}
|
|
}
|