-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1007 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
33
34
35
36
37
38
39
40
{
"name": "loopring-mm-bot",
"version": "1.0.0",
"description": "simple loopring market maker bot",
"main": "build/server.js",
"scripts": {
"start": "tsc && node build/server.js",
"test": "mocha -r ts-node/register src/tests/**/*.test.ts",
"build": "tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"bignumber.js": "^9.0.1",
"blake-hash": "^2.0.0",
"blake2b": "^2.1.3",
"bn.js": "^5.1.3",
"crypto-js": "^4.0.0",
"ethereumjs-util": "5.2.0",
"js-sha256": "^0.9.0",
"moment": "^2.29.1",
"restify-clients": "^3.1.0",
"snarkjs": "0.1.20",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.14",
"@types/ethereumjs-util": "^6.1.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/ws": "^7.4.0",
"chai": "^4.3.0",
"lodash": "^4.17.20",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}