-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
114 lines (114 loc) · 3.06 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
{
"version": "0.7.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"preinstall": "node -v",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s public"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"name": "@100mslive/hms-video-react",
"author": "100ms",
"module": "dist/hms-video-react.esm.js",
"size-limit": [
{
"path": "dist/hms-video-react.cjs.production.min.js",
"limit": "600 KB"
},
{
"path": "dist/hms-video-react.esm.js",
"limit": "600 KB"
}
],
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@rollup/plugin-image": "^2.0.6",
"@size-limit/preset-small-lib": "^4.10.2",
"@storybook/addon-essentials": "^6.2.3",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.2.3",
"@storybook/addon-storysource": "^6.2.8",
"@storybook/addons": "^6.2.5",
"@storybook/react": "^6.2.3",
"@storybook/theming": "^6.2.5",
"@tailwindcss/postcss7-compat": "^2.1.0",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.reduce": "^4.6.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-linkify": "^1.0.0",
"@types/react-slick": "^0.23.4",
"@types/react-window": "^1.8.2",
"babel-loader": "^8.2.2",
"husky": "^6.0.0",
"prettier": "1.19.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-static-files": "^0.2.0",
"size-limit": "^4.10.2",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@100mslive/hms-video-store": "0.8.4",
"@material-ui/core": "^4.11.3",
"@twind/aspect-ratio": "^0.1.4",
"autoprefixer": "^9.8.6",
"clsx": "^1.1.1",
"lodash.merge": "^4.6.2",
"lodash.reduce": "^4.6.0",
"postcss": "8.2.13",
"react-click-away-listener": "^2.0.3",
"react-intersection-observer": "^8.31.1",
"react-markdown": "^6.0.0",
"react-resize-detector": "^6.6.5",
"remark-gfm": "^1.0.0",
"tailwind-percentage-heights-plugin": "^0.1.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2",
"twind": "^0.16.12",
"zustand": "3.5.7"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1",
"**/jest": "^26.6.3",
"**/ts-jest": "^26.4.4",
"**/typescript": "^4.4.4"
}
}