-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.76 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
{
"name": "react-bootstrap-chat-ui",
"version": "0.0.10",
"description": "UIkit for chat application using react and bootstrap",
"main": "dist/bundle/cjs/react-bootstrap-chat-ui.min.js",
"module": "dist/esm/index.js",
"repository": "git@github.com:vu-luong/react-bootstrap-chat-ui.git",
"author": "vu-luong <vubinhcht@gmail.com>",
"license": "MIT",
"scripts": {
"start": "nwb serve-react-app",
"build:bundle": "rm -rf dist/bundle && rollup -c",
"build:es": "rm -rf dist/esm && babel src --out-dir dist/esm --config-file ./babel.config.js --copy-files",
"lint": "eslint . --ext .js,.jsx"
},
"private": false,
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"nwb": "^0.25.2",
"postcss": "^8.4.13",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.72.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"bootstrap": "4.6.0",
"classnames": "^2.3.1",
"prop-types": "^15.8.1",
"react-infinite-scroller": "^1.2.6",
"react-uuid": "^1.0.2"
}
}