-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "xud-socketio",
"version": "1.1.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"build": "tsc && scripts/copy_protos.sh",
"start": "ts-node src/index.ts",
"start:watch": "nodemon --watch src/*.ts --exec ts-node src/index.ts",
"compile:proto": "scripts/compile_protos.sh",
"test": "jest"
},
"dependencies": {
"big.js": "^5.2.2",
"express": "^4.17.1",
"google-protobuf": "^3.12.2",
"grpc": "^1.24.3",
"moment": "^2.27.0",
"socket.io": "^2.3.0",
"winston": "^3.3.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/express": "^4.17.6",
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.14",
"@types/socket.io": "^2.1.8",
"@types/yargs": "^15.0.5",
"grpc-tools": "^1.9.0",
"grpc_tools_node_protoc_ts": "^4.1.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^3.9.5"
}
}