-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 2.23 KB
/
package.json
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
{
"name": "reactive-video-root",
"version": "1.0.5",
"license": "GPL-3.0-only",
"private": true,
"description": "Create videos using React!",
"author": "Mikael Finstad <[email protected]>",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mifi/reactive-video.git"
},
"scripts": {
"test": "vitest --exclude='packages/e2e/**/*'",
"test:e2e": "vitest",
"clean": "yarn workspaces foreach -pW run clean",
"tsc": "tsc -b",
"lint": "eslint .",
"watch": "tsc -b -w",
"version:frontend": "cd packages/frontend && mkdir -p .git && npm --tag-version-prefix='reactive-video/v' --workspaces-update=false version",
"version:builder": "cd packages/builder && mkdir -p .git && npm --tag-version-prefix='@reactive-video/builder/v' --workspaces-update=false version",
"pack:frontend": "yarn tsc && yarn workspace reactive-video pack",
"pack:builder": "yarn tsc && yarn workspace @reactive-video/builder pack",
"publish:frontend": "yarn workspace reactive-video npm publish",
"publish:builder": "yarn workspace @reactive-video/builder npm publish"
},
"workspaces": {
"packages": [
"packages/builder",
"packages/frontend",
"packages/e2e"
]
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/binary-split": "^1.0.3",
"@types/cookie-parser": "^1.4.8",
"@types/debug": "^4.1.12",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/express": "4",
"@types/json-stable-stringify": "^1.1.0",
"@types/morgan": "^1.9.9",
"@types/node": "18",
"@types/sharp": "0.30.3",
"@types/workerpool": "6",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.2.0",
"eslint-config-mifi": "^0.0.6",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^51.0.1",
"execa": "^9.5.1",
"jest-image-snapshot": "^6.4.0",
"rimraf": "^5.0.5",
"sharp": "^0.30.3",
"type-fest": "^4.29.0",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"packageManager": "[email protected]"
}