-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.25 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.25 KB
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
{
"name": "@rocket.chat/ui-video-conf",
"version": "22.0.0-rc.2",
"private": true,
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"eslint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"storybook": "storybook dev -p 6006",
"test": "jest",
"testunit": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@rocket.chat/emitter": "~0.31.25"
},
"devDependencies": {
"@babel/core": "~7.26.10",
"@rocket.chat/css-in-js": "~0.31.25",
"@rocket.chat/eslint-config": "workspace:^",
"@rocket.chat/fuselage": "^0.66.3",
"@rocket.chat/fuselage-hooks": "^0.37.0",
"@rocket.chat/fuselage-polyfills": "~0.31.25",
"@rocket.chat/fuselage-tokens": "~0.33.2",
"@rocket.chat/icons": "^0.43.0",
"@rocket.chat/jest-presets": "workspace:~",
"@rocket.chat/styled": "~0.32.0",
"@rocket.chat/tsconfig": "workspace:*",
"@rocket.chat/ui-avatar": "workspace:^",
"@rocket.chat/ui-contexts": "workspace:^",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-actions": "^8.6.14",
"@storybook/addon-docs": "^8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
"@storybook/react": "^8.6.14",
"@storybook/react-webpack5": "^8.6.14",
"@types/jest": "~30.0.0",
"@types/jest-axe": "~3.5.9",
"@types/react": "~18.3.23",
"@types/react-dom": "~18.3.7",
"eslint": "~8.45.0",
"eslint-plugin-react": "~7.37.5",
"eslint-plugin-react-hooks": "~5.0.0",
"eslint-plugin-storybook": "~0.11.6",
"jest": "~30.0.5",
"jest-axe": "~10.0.0",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-virtuoso": "^4.12.0",
"storybook": "^8.6.14",
"typescript": "~5.9.2",
"webpack": "~5.99.9"
},
"peerDependencies": {
"@rocket.chat/css-in-js": "*",
"@rocket.chat/fuselage": "*",
"@rocket.chat/fuselage-hooks": "*",
"@rocket.chat/icons": "*",
"@rocket.chat/styled": "*",
"@rocket.chat/ui-avatar": "workspace:^",
"@rocket.chat/ui-contexts": "workspace:^",
"react": "*",
"react-dom": "*"
},
"volta": {
"extends": "../../package.json"
}
}