-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 949 Bytes
/
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
{
"name": "chat",
"version": "1.0.0",
"description": "a P2P chat App using React/Redux/Socker.io/WebRTC",
"main": "server.js",
"dependencies": {
"express": "^4.15.2",
"socket.io": "^2.1.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"deploy": "cd frontend && npm install && npm run build && cd build && cp ../../package.json . && cp ../../server.js . && now --public",
"dev": "cd frontend && npm run build && cd build && cp ../../package.json . && cp ../../server.js . && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diogoalves/chat.git"
},
"keywords": [
"react",
"redux",
"socket.io",
"webrtc"
],
"author": "diogo.alves@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/diogoalves/chat/issues"
},
"homepage": "https://github.com/diogoalves/chat#readme"
}