-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
122 lines (122 loc) · 3.32 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"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.13.15",
"esbuild-plugin-postcss2": "0.1.1",
"eslint": "^8.9.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^6.0.0",
"jest": "26.6.0",
"lerna": "^5.5.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.23.15",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "~4.7.4",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-manifest-plugin": "^4.1.1"
},
"scripts": {
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"format": "lerna run format --stream",
"test": "yarn build --no-private && lerna run test --stream",
"start": "lerna run start --stream",
"build": "lerna run build --stream --ignore 100ms_edtech_template",
"size": "size-limit",
"build:only": "lerna run build:only --stream",
"postinstall": "husky install && lerna bootstrap",
"cypress:open": "cypress open",
"app": "cd apps/100ms-web && yarn start",
"sdk": "cd packages/hms-video-web && yarn start",
"store": "cd packages/hms-video-store && yarn start",
"reactsdk": "cd packages/react-sdk && yarn start",
"reactui": "cd packages/react-ui && yarn start",
"storybook": "cd packages/react-ui && yarn storybook",
"build-storybook": "cd packages/react-ui && build-storybook"
},
"workspaces": [
"packages/*",
"apps/*",
"playwright/*"
],
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*": "format && lint:fix"
},
"size-limit": [
{
"path": "packages/hms-video-web/dist/index.cjs.js",
"limit": "60 KB"
},
{
"path": "packages/hms-video-web/dist/index.js",
"limit": "200 KB"
},
{
"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/react-ui/dist/index.cjs.js",
"limit": "20 KB"
},
{
"path": "packages/react-ui/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/hms-noise-suppression/dist/index.cjs.js",
"limit": "200 KB"
},
{
"path": "packages/hms-noise-suppression/dist/index.js",
"limit": "200 KB"
}
]
}