-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
86 lines (86 loc) · 5.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@stream-io/video-js-root",
"description": "Stream Video JS SDKs",
"author": "https://getstream.io",
"packageManager": "[email protected]",
"private": true,
"license": "See license in LICENSE",
"workspaces": [
"packages/*",
"sample-apps/*/*"
],
"scripts": {
"start:react:sdk": "yarn workspace @stream-io/video-react-sdk run start",
"build:react:sdk": "yarn workspace @stream-io/video-react-sdk run build",
"start:react:bindings": "yarn workspace @stream-io/video-react-bindings run start",
"build:react:bindings": "yarn workspace @stream-io/video-react-bindings run build",
"build:react:dogfood": "yarn workspace @stream-io/video-react-dogfood run build",
"start:react:dogfood": "yarn workspace @stream-io/video-react-dogfood run dev",
"start:react-native:sdk": "yarn workspace @stream-io/video-react-native-sdk run start",
"build:react-native:sdk": "yarn workspace @stream-io/video-react-native-sdk run build",
"test:react-native:sdk": "yarn workspace @stream-io/video-react-native-sdk run test",
"start:react-native:ios:dogfood": "yarn workspace @stream-io/video-react-native-dogfood run ios",
"start:react-native:android:dogfood": "yarn workspace @stream-io/video-react-native-dogfood run android",
"build:styling": "yarn workspace @stream-io/video-styling run build",
"start:styling": "yarn workspace @stream-io/video-styling run start",
"build:client": "yarn workspace @stream-io/video-client run build",
"start:client": "yarn workspace @stream-io/video-client run start",
"build:audio-filters-web": "yarn workspace @stream-io/audio-filters-web run build",
"build:video-filters-web": "yarn workspace @stream-io/video-filters-web run build",
"build:video-filters-react-native": "yarn workspace @stream-io/video-filters-react-native run build",
"build:react:deps": "yarn build:client && yarn build:styling && yarn build:react:bindings && yarn build:video-filters-web && yarn build:audio-filters-web && yarn build:react:sdk",
"build:react-native:deps": "yarn build:client && yarn build:react:bindings && yarn build:video-filters-react-native && yarn build:react-native:sdk",
"build:vercel": "yarn build:react:deps && yarn build:react:dogfood",
"start:egress": "yarn workspace @stream-io/egress-composite start",
"build:egress": "yarn workspace @stream-io/egress-composite build",
"build:all": "yarn workspaces foreach -v --topological-dev run build",
"build:libs": "yarn workspaces foreach -v --topological-dev --no-private run build",
"clean:all": "yarn workspaces foreach -vt run clean",
"lint:all": "yarn lint:packages && yarn lint:sample-apps",
"lint:packages": "eslint --cache --fix 'packages/**/*.{ts,tsx}'",
"lint:sample-apps": "eslint --cache --fix 'sample-apps/**/*.{ts,tsx}'",
"lint:ci:all": "eslint --max-warnings=0 --cache 'packages/**/*.{ts,tsx}'",
"lint:ci:packages": "eslint --max-warnings=0 --cache 'packages/**/*.{ts,tsx}'",
"test:ci:all": "yarn workspaces foreach -vt run test-ci",
"test:ci:libs": "yarn workspaces foreach -vt --no-private run test-ci",
"lint:ci:client": "eslint --cache 'packages/client/**/*.{ts,tsx}'",
"test:ci:client": "yarn workspace @stream-io/video-client run test-ci",
"sample:react:messenger": "yarn workspace @stream-io/messenger-clone-react run dev",
"sample:react:audio-rooms": "yarn workspace @stream-io/audio-rooms run dev",
"sample:react:livestream-app": "yarn workspace @stream-io/livestream-app run dev",
"sample:react:zoom-clone": "yarn workspace @stream-io/zoom-clone-react run dev",
"sample:react:tutorial": "yarn workspace @stream-io/stream-video-react-tutorial run dev",
"release": "nx run-many --target version --parallel=1",
"release:client": "yarn workspace @stream-io/video-client npm publish --access=public --tag=latest",
"release:react-bindings": "yarn workspace @stream-io/video-react-bindings npm publish --access=public --tag=latest",
"release:react-sdk": "yarn workspace @stream-io/video-react-sdk npm publish --access=public --tag=latest",
"release:react-native-sdk": "yarn workspace @stream-io/video-react-native-sdk npm publish --access=public --tag=latest",
"release:audio-filters-web": "yarn workspace @stream-io/audio-filters-web npm publish --access=public --tag=latest",
"release:video-filters-web": "yarn workspace @stream-io/video-filters-web npm publish --access=public --tag=latest",
"release:video-filters-react-native": "yarn workspace @stream-io/video-filters-react-native npm publish --access=public --tag=latest",
"release:styling": "yarn workspace @stream-io/video-styling npm publish --access=public --tag=latest"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-angular": "^17.0.0",
"@jscutlery/semver": "^3.4.1",
"@nx/devkit": "^16.10.0",
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/typescript-estree": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"nx": "16.10.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vercel": "^37.4.2",
"vite": "^5.4.6"
},
"resolutions": {
"eslint-plugin-prettier": "^5.1.3"
}
}