forked from Sofie-Automation/sofie-timeline-state-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "timeline-state-resolver-packages",
"private": true,
"version": "0.0.0",
"workspaces": {
"packages": [
"packages/timeline-state-resolver-tools",
"packages/timeline-state-resolver-types",
"packages/timeline-state-resolver-api",
"packages/timeline-state-resolver",
"packages/quick-tsr"
]
},
"scripts": {
"prepare": "husky",
"build": "(rimraf packages/*/dist packages/*/*.tsbuildinfo || true) && run build:prepare && run build:main",
"build:prepare": "run generate-schema-types && run translations:bundle",
"build:main": "tsc --build tsconfig.build.json",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx ",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"test": "run lint && lerna run --stream test",
"test:changed": "lerna run --since origin/master --include-dependents test",
"unit": "lerna run --stream unit",
"unitci": "lerna run --stream unitci",
"watch": "run build:main --watch --preserveWatchOutput",
"docs": "typedoc .",
"release:set-version": "lerna version --exact --no-changelog --no-git-tag-version --no-push --yes",
"release:bump-release": "lerna version --exact --conventional-commits --changelog-preset conventionalcommits --conventional-graduate --tag-version-prefix='' --no-push --force-publish='*'",
"release:bump-prerelease": "lerna version --exact --conventional-commits --changelog-preset conventionalcommits --conventional-prerelease --tag-version-prefix='' --no-push --force-publish='*'",
"validate:dependencies": "lerna exec --parallel yarn validate:dependencies",
"validate:dev-dependencies": "lerna exec --parallel yarn validate:dev-dependencies",
"generate-schema-types": "yarn workspace timeline-state-resolver generate-schema-types",
"translations:extract": "yarn workspace timeline-state-resolver translations:extract",
"translations:bundle": "yarn workspace timeline-state-resolver translations:bundle"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~3.2.0",
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.28",
"@types/semver": "^7.7.1",
"@types/sprintf-js": "^1.1.4",
"@types/underscore": "^1.13.0",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"open-cli": "^8.0.0",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"semver": "^7.7.3",
"ts-jest": "^29.4.6",
"typedoc": "^0.26.11",
"typescript": "~5.7.3"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint-fix"
]
},
"packageManager": "yarn@4.12.0",
"resolutions": {
"casparcg-connection": "6.3.3"
}
}