forked from aermin/ghChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.85 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
{
"name": "ghChat",
"version": "1.0.0",
"description": "a chat tool for GitHub ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.config.js --color --hot",
"build": "webpack --config webpack.dev.config.js",
"build:prod": "webpack --config webpack.prod.config.js",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.{js,jsx,json,md,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aermin/ghChat.git"
},
"author": "aermin",
"license": "MIT",
"bugs": {
"url": "https://github.com/aermin/ghChat/issues"
},
"homepage": "https://github.com/aermin/ghChat#readme",
"devDependencies": {
"autoprefixer": "^8.6.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bundle-loader": "^0.5.6",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "v1.1.12",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^2.1.5",
"prettier": "^1.19.1",
"progress-bar-webpack-plugin": "^2.1.0",
"react-hot-loader": "^4.12.19",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "^7.0.2",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^2.3.5",
"url-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@loadable/component": "^5.7.0",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"emoji-mart": "^2.9.2",
"fuse.js": "^3.3.0",
"immutable": "^3.8.2",
"linkify-it": "^2.1.0",
"prop-types": "^15.6.1",
"qiniu-js": "^2.5.3",
"rc-notification": "^3.1.1",
"rc-switch": "^1.9.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-markdown": "^4.0.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.0",
"react-viewer": "^2.8.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"socket.io-client": "^2.2.0",
"text-emoji-parser": "^1.0.8",
"tlds": "^1.203.1"
}
}