forked from RocketChat/EmbeddedChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.21 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
{
"name": "embeddedchat",
"version": "0.0.2",
"description": "Integrate RocketChat into any React based web app using this extensible, robust component library",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "NODE_ENV=development rollup -c --context=window",
"build:prod": "NODE_ENV=production rollup -c --context=window",
"watch": "rollup -c --watch --context=window",
"dev": "concurrently \" npm run watch \" \" npm run start --prefix playground \"",
"test": "run-s test:unit test:lint test:build",
"test:lint": "eslint src/**/*.js",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom --coverage --collectCoverageFrom=src/components/**/*.js",
"test:build": "run-s build",
"format": "prettier --write 'src/' --loglevel=silent",
"lint:fix": "eslint 'src/**/*.js' --fix",
"prepublish": "npm run build",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npm run test:lint -- --fix",
"npm run format"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/react": "^12.1.4",
"babel-jest": "^27.5.1",
"concurrently": "^7.2.0",
"cross-env": "^7.0.3",
"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",
"husky": "^8.0.0",
"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-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"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",
"schedule": "^0.4.0"
},
"dependencies": {
"@rocket.chat/fuselage": "^0.31.12",
"@rocket.chat/fuselage-hooks": "^0.31.12",
"@rocket.chat/fuselage-polyfills": "^0.31.12",
"@rocket.chat/fuselage-toastbar": "^0.31.14",
"@rocket.chat/icons": "^0.31.12",
"@rocket.chat/sdk": "^1.0.0-alpha.42",
"@rollup/plugin-json": "^4.1.0",
"color": "^4.2.3",
"date-fns": "^2.29.3",
"dompurify": "^2.3.8",
"emoji-picker-react": "2.1.1",
"emoji-toolkit": "^6.6.0",
"gapi-cjs": "^1.0.2",
"he": "^1.2.0",
"js-cookie": "^3.0.1",
"marked": "^4.0.17",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtuoso": "^1.2.4",
"reactjs-popup": "^2.0.5",
"scheduler": "^0.23.0",
"stylis": "^4.0.10",
"zustand": "^4.0.0-rc.1"
}
}