-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 3.59 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
{
"name": "react-bell-chat",
"version": "1.0.54",
"description": "A library of React components for building chat UIs",
"repository": "https://github.com/PeterKottas/react-bell-chat",
"main": "./lib/index.min.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "set NODE_ENV=local && webpack serve --config webpack/webpack.config.dev.js",
"build:typings": "tsc --declaration --emitDeclarationOnly --declarationDir lib",
"build:clean": "rimraf lib",
"build:lib": "webpack --config ./webpack/webpack.config.js && webpack --config ./webpack/webpack.config.min.js",
"build:gh-pages": "rimraf docs && set NODE_ENV=production && webpack --config ./webpack/webpack.config.gh-pages.js",
"build": "npm run build:clean && npm run build:typings && npm run build:lib",
"build:prod": "set NODE_ENV=production && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build-deploy": "npm run build && npm run build:gh-pages",
"version:patch": "npm version patch",
"push:git": "git push --tags origin master --quiet",
"conventional-github-releaser": ".env.bat && conventional-github-releaser -p angular",
"commit:build": "git add . && git commit -m \"Deploy commit\" --quiet & npm run push:git",
"create:patch": "npm run version:patch && npm run push:git",
"deploy": "npm run build:gh-pages && npm run build:prod && npm run commit:build && npm publish && npm run conventional-github-releaser -p angular && npm run create:patch",
"lint": "eslint \"./src/**/*.{js,ts,tsx}\" --quiet --fix"
},
"keywords": [
"react",
"chat",
"chatfeed",
"reactjs",
"ui",
"messenger"
],
"author": "Peter Kottas",
"license": "MIT",
"dependencies": {
"classnames": "^2.0.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/cli": "7.21.5",
"@babel/core": "7.21.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-class-static-block": "^7.21.0",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/classnames": "^2.2.11",
"@types/history": "4.7.8",
"@types/node": "^14.14.41",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^4.0.0",
"conventional-github-releaser": "^3.1.5",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^6.8.1",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "^5.3.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "2.7.6",
"normalize.css": "^8.0.1",
"npm-check-updates": "^11.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "7.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.1",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.14.1",
"rimraf": "3.0.2",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^4.2.4",
"use-debounce": "^6.0.1",
"webpack": "5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "5.9.0",
"webpack-plugin-serve": "^1.6.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}