-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "centaur",
"version": "0.0.1-dev",
"description": "A chat app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --optimize-dedupe --optimize-minify",
"dev": "webpack-dev-server --content-base src --hot --inline --open",
"start": "node Source/Server/ExpressHandler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SaitamaSama/Centaur.git"
},
"keywords": [
"chat"
],
"author": "Saitama Sama",
"license": "MIT",
"bugs": {
"url": "https://github.com/SaitamaSama/Centaur/issues"
},
"homepage": "https://github.com/SaitamaSama/Centaur#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"node-sass": "4.13.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"@material-ui/core": "^3.0.2",
"@material-ui/icons": "^3.0.1",
"emoji-mart": "^2.11.2",
"express": "^4.16.3",
"express-ws": "^4.0.0",
"react": "^16.5.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.5.0",
"react-katex": "^2.0.2",
"react-markdown": "^3.6.0",
"react-router-dom": "^4.3.1",
"rxjs": "^6.3.2",
"undux": "^5.0.0-alpha.15",
"uuid": "^3.3.2"
}
}