-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"name": "sofie-rundown-editor",
"version": "2.7.6",
"private": true,
"description": "A standalone tool for creating and editing Sofie rundowns.",
"repository": {
"type": "git",
"url": "git+https://github.com/SuperFlyTV/sofie-automation-rundown-editor.git"
},
"author": {
"name": "SuperFlyTV AB",
"email": "info@superfly.tv",
"url": "https://superfly.tv"
},
"scripts": {
"prepare": "husky",
"dev:backend": "yarn workspace @sofie-rundown-editor/backend dev",
"start": "yarn workspace @sofie-rundown-editor/backend start",
"dev:ui": "yarn workspace @sofie-rundown-editor/frontend dev",
"dev": "yarn dev:backend & yarn dev:ui",
"lint": "yarn workspaces foreach --topological-dev --all --verbose run lint",
"lint-fix": "yarn lint --fix",
"build": "yarn workspaces foreach --topological-dev --all --verbose run build",
"license-validate": "license-checker -r --filter MIT --filter 0BSD --filter BSD --filter ISC --filter Apache --filter Unlicense --plain --border ascii",
"validate:dependencies": "yarn npm audit --environment production && yarn license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development"
},
"workspaces": [
"frontend",
"backend"
],
"license": "MIT",
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,cts}": [
"yarn lint-fix"
]
},
"packageManager": "yarn@4.9.1",
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^9.1.7",
"license-checker": "^25.0.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"zx": "^8.8.5"
}
}