-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
108 lines (108 loc) · 3.04 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.8.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@size-limit/file": "^5.0.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^26.6.0",
"babel-plugin-istanbul": "^6.1.1",
"concurrently": "^6.4.0",
"cypress": "^9.5.2",
"dotenv": "^14.2.0",
"esbuild": "^0.18.13",
"esbuild-plugin-postcss2": "0.1.1",
"eslint": "^8.9.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^6.0.0",
"jest": "26.6.0",
"lerna": "^5.6.2",
"lint-staged": "^12.0.3",
"nx": "^14.5.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.4.1",
"size-limit": "^5.0.3",
"ts-jest": "26.5.6",
"ts-node": "^10.4.0",
"tslib": "^2.2.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "~4.7.4"
},
"scripts": {
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"format": "lerna run format",
"test": "yarn build --no-private && lerna run test",
"start": "lerna run start --stream",
"build": "lerna run build --stream",
"lerna:publish": "lerna publish from-package --dist-tag $PUBLISH_FLAG --yes --no-verify-access",
"size": "size-limit",
"build:only": "lerna run build:only --stream",
"postinstall": "husky install && lerna bootstrap",
"cypress:open": "cypress open",
"store": "cd packages/hms-video-store && yarn start",
"reactsdk": "cd packages/react-sdk && yarn start",
"prebuilt": "cd packages/roomkit-react && yarn start",
"controller": "cd packages/hls-controller && yarn start",
"storybook": "cd packages/roomkit-react && yarn storybook",
"build-storybook": "cd packages/roomkit-react && yarn build-storybook",
"ybys": "yarn && yarn build --no-private && yarn storybook"
},
"resolutions": {
"loader-utils": "^2.0.4",
"axios": "^1.7.4"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=16"
},
"lint-staged": {
"*.(js|ts|jsx|tsx)": "eslint"
},
"size-limit": [
{
"path": "packages/hms-video-store/dist/index.cjs.js",
"limit": "20 KB"
},
{
"path": "packages/hms-video-store/dist/index.js",
"limit": "20 KB"
},
{
"path": "packages/roomkit-react/dist/index.cjs.js",
"limit": "400 KB"
},
{
"path": "packages/roomkit-react/dist/index.js",
"limit": "20 KB"
},
{
"path": "packages/hms-virtual-background/dist/index.cjs.js",
"limit": "20 KB"
},
{
"path": "packages/hms-virtual-background/dist/index.js",
"limit": "20 KB"
},
{
"path": "packages/react-icons/dist/index.cjs.js",
"limit": "150 KB"
},
{
"path": "packages/react-icons/dist/index.js",
"limit": "100 KB"
}
]
}