-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.8 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
{
"name": "fishjam-web-sdk",
"version": "0.11.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/protobufs",
"packages/ts-client",
"packages/react-client",
"packages/webrtc-client",
"examples/ts-client/*",
"examples/react-client/*",
"e2e-tests/webrtc-client",
"e2e-tests/react-client"
],
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspaces foreach -Ap --topological-dev run build",
"test:unit": "yarn workspaces foreach -Ap run test",
"test:e2e": "yarn workspace @fishjam-e2e/webrtc-client e2e && yarn workspace @fishjam-e2e/react-client e2e",
"gen:proto": "yarn workspace @fishjam-cloud/protobufs gen:proto",
"tsc": "yarn workspaces foreach -Ap run tsc || echo '❌ Type errors! ❌' ",
"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"
},
"devDependencies": {
"@fishjam-cloud/protobufs": "workspace:^",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"typedoc": "^0.27.6",
"typedoc-material-theme": "^1.3.0",
"typescript": "^5.7.3"
}
}