-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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
{
"name": "chatroom",
"version": "1.0.0",
"description": "## chat room",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --watch --mode development",
"build": "webpack -p",
"start": "./node_modules/.bin/babel server.js && nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdrianHsu/chatroom.git"
},
"author": "adrianhsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdrianHsu/chatroom/issues"
},
"homepage": "https://github.com/AdrianHsu/chatroom#readme",
"dependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"@livechat/ui-kit": "^0.1.0",
"@material-ui/core": "^1.0.0-rc.1",
"@material-ui/icons": "^1.0.0-rc.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.0-beta.2",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"material-ui": "^0.20.1",
"mongo": "^0.1.0",
"mongoose": "^5.1.1",
"mongoose-unique-validator": "^2.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"typeface-roboto": "0.0.54",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
}
}