-
Notifications
You must be signed in to change notification settings - Fork 365
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.57 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.57 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
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
{
"name": "@embeddedchat/react",
"version": "0.2.2",
"description": "React component library for embedding Rocket.Chat in React applications, providing customizable and feature-rich chat interfaces with easy React integration.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/RocketChat/EmbeddedChat"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c --context=window --environment NODE_ENV:production",
"watch": "rollup -c --watch --context=window",
"test:lint": "eslint src/**/*.js",
"format": "prettier --write 'src/' ",
"format:check": "prettier --check 'src/' ",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-icons": "node tools/icons-generator.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/babel-plugin": "^11.11.0",
"@open-wc/building-rollup": "^3.0.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^5.0.2",
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/addon-styling": "^1.3.6",
"@storybook/blocks": "^7.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-webpack5": "^7.0.26",
"@storybook/testing-library": "^0.2.0",
"@testing-library/react": "^12.1.4",
"babel-jest": "^27.5.1",
"concurrently": "^7.2.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^5.0.1",
"rollup": "^2.70.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.66.1",
"schedule": "^0.4.0",
"storybook": "^7.0.26"
},
"peerDependencies": {
"react": ">=17.0.2 <19.0.0",
"react-dom": ">=17.0.2 <19.0.0"
},
"dependencies": {
"@embeddedchat/api": "workspace:^",
"@embeddedchat/markups": "workspace:^",
"@embeddedchat/ui-elements": "workspace:^",
"@embeddedchat/ui-kit": "workspace:^",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/react": "11.7.1",
"@rocket.chat/emitter": "^0.31.25",
"@rocket.chat/fuselage-hooks": "^0.33.1",
"@rocket.chat/ui-kit": "^0.31.25",
"@rollup/plugin-json": "^6.0.0",
"@tanstack/react-virtual": "^3.13.18",
"date-fns": "^2.30.0",
"emoji-picker-react": "^4.4.9",
"emoji-toolkit": "^7.0.1",
"json5": "^2.2.3",
"normalize.css": "^8.0.1",
"prop-types": "^15.8.1",
"swiper": "^11.1.0",
"zustand": "^4.3.8"
}
}