-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
45 lines (45 loc) · 1.33 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
43
44
45
{
"name": "@dydxprotocol/v3-client",
"version": "1.16.0",
"description": "Trading client library for the new dYdX system (v3 API)",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build/ && npm run compile",
"compile": "tsc",
"compile:watch": "npm run compile -- --watch",
"coverage": "npm run test -- --coverage",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"start": "node build/src/index.js",
"prepublishOnly": "npm run compile",
"test": "NODE_ENV=test jest",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dydxprotocol/v3-client.git"
},
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/v3-client/issues"
},
"homepage": "https://github.com/dydxprotocol/v3-client#readme",
"dependencies": {
"@dydxprotocol/starkex-eth": "0.18.0",
"@dydxprotocol/starkex-lib": "1.2.0",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"es6-promisify": "^6.0.1",
"ethers": "5.0.18",
"uuid": "^8.3.1",
"web3": "1.3.6",
"web3-core": "1.3.6"
},
"devDependencies": {
"@dydxprotocol/node-service-base-dev": "0.2.9",
"@types/es6-promisify": "^6.0.0",
"@types/ffi-napi": "^4.0.4",
"@types/uuid": "^8.3.0"
}
}