-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.23 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.23 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
{
"name": "fishjam-web-sdk",
"version": "0.26.0-rc.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/protobufs",
"packages/ts-client",
"packages/react-client",
"packages/webrtc-client",
"packages/mobile-client",
"examples/react-client/*",
"examples/mobile-client/*",
"examples/mobile-client/common/plugins",
"e2e-tests/webrtc-client",
"e2e-tests/react-client",
"e2e-tests/livestream-client"
],
"packageManager": "yarn@4.12.0",
"scripts": {
"build": "yarn workspaces foreach -Ap --topological-dev run build",
"test:unit": "yarn workspaces foreach -Ap run test",
"test:e2e": "yarn workspaces foreach -A --include '@fishjam-e2e/*' run e2e",
"gen:proto": "yarn workspace @fishjam-cloud/protobufs gen:proto",
"tsc": "yarn workspaces foreach -Ap run tsc",
"format:root": "prettier . --write",
"format:root:check": "prettier . --check",
"format": "yarn format:root & yarn workspaces foreach -A -p run format || echo '❌ Formatting issues! ❌'",
"format:check": "yarn format:root:check & yarn workspaces foreach -A -p run format:check",
"lint": "yarn workspaces foreach -A -p run lint || echo '❌ Lint errors! ❌'",
"lint:check": "yarn workspaces foreach -A -p run lint:check",
"docs": "typedoc",
"spellcheck": "cspell '**/*.md' '**/*.mdx' '**/*.html' --exclude '**/api/**' --show-suggestions",
"spellcheck:report": "yarn spellcheck --no-show-suggestions",
"prepare": "husky || true"
},
"resolutions": {
"jest-snapshot-prettier": "npm:prettier@^3"
},
"devDependencies": {
"@fishjam-cloud/protobufs": "workspace:^",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"cspell": "^9.4.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typedoc": "^0.28.2",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.8.3"
},
"stableVersion": "0.26.0-rc.0"
}