forked from aermin/ghChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
{
"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.config.js",
"lint": "eslint src",
"lint:create": "eslint --init"
},
"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": "^10.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-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"postcss-loader": "^2.1.5",
"react-hot-loader": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "^7.0.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.1.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5",
"webpack-merge": "^4.1.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",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-markdown": "^4.0.6",
"react-redux": "^5.0.7",
"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"
}
}