-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "react-node-chat-app",
"version": "0.1.0",
"description": "Node + React websocket based live chat app",
"scripts": {
"client": "cd chat-client && npm start",
"server": "cd server && babel-node server.js",
"nodemon-server": "cd server && nodemon -L --exec babel-node server.js",
"dev": "concurrently --kill-others-on-fail \"npm run nodemon-server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/opazupa/node-react-chat-app.git"
},
"author": "Olli Saarinen",
"license": "MIT",
"bugs": {
"url": "https://github.com/opazupa/node-react-chat-app/issues"
},
"homepage": "https://github.com/opazupa/node-react-chat-app#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.16.4",
"mongoose": "^5.3.13",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
}
}