-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 848 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 848 Bytes
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
{
"name": "chat2",
"version": "1.0.0",
"description": "chat",
"main": "index.js",
"scripts": {
"server": "source .env; ./node_modules/.bin/nodemon --watch src --exec babel-node -- src/server/index.js",
"alice": "source .env; ./node_modules/.bin/nodemon --watch src --exec babel-node -- src/client/index.js alice",
"bob": "source .env; ./node_modules/.bin/nodemon --watch src --exec babel-node -- src/client/index.js bob"
},
"author": "lusenko",
"license": "ISC",
"dependencies": {
"nodemon": "^1.19.4",
"node-forge": "^0.10.0",
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"redux": "latest",
"repl": "^0.1.3",
"socket.io-client": "latest",
"chalk": "latest"
},
"devDependencies": {
"socket.io": "^2.3.0"
}
}