-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
90 lines (90 loc) · 2.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@consenlabs/tokenlon-mmsk",
"version": "5.3.5",
"description": "Tokenlon market maker server kit",
"author": "imToken PTE. LTD.",
"license": "MIT",
"main": "lib/index.js",
"homepage": "https://github.com/consenlabs/tokenlon-mmsk#readme",
"bugs": {
"url": "https://github.com/consenlabs/tokenlon-mmsk/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/consenlabs/tokenlon-mmsk.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"app/**/*",
"lib/**/*"
],
"scripts": {
"build:contracts": "hardhat compile --force",
"build": "run-s clean build:commonjs",
"build:commonjs": "tsc",
"check": "node ./app/check.js",
"clean": "rm -rf ./lib",
"start": "node ./app/start.js",
"test:mainnet": "FORK_NETWORK=mainnet hardhat test",
"test:goerli": "FORK_NETWORK=goerli hardhat test",
"watch": "tsc -w"
},
"devDependencies": {
"@0x/typescript-typings": "^5.1.1",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tokenlon/sdk": "^5.2.0-lo.alpha.5",
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.175",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"chai": "^4.3.4",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"ethereum-types": "^3.2.0",
"hardhat": "^2.17.3",
"hardhat-gas-reporter": "1.0.4",
"nock": "^13.3.3",
"npm-run-all": "4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "8.10.2",
"typescript": "3.9.9"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
},
"dependencies": {
"@ethersproject/abstract-signer": "5.7.0",
"@toolchainx/ethers-gcp-kms-signer": "1.0.5",
"@0x/contract-addresses": "^4.11.0",
"@0x/subproviders": "6.0.8",
"@babel/runtime": "7.3.1",
"@ethereumjs/tx": "^3.5.0",
"@koalex/koa-json-rpc": "^1.0.3",
"@openzeppelin/contracts": "^4.9.3",
"@sentry/node": "4.5.3",
"0x-v2-order-utils": "npm:@0xproject/order-utils@^1.0.1",
"0x-v2-utils": "npm:@0xproject/utils@^2.0.0",
"axios": "0.21.2",
"axios-logger": "^2.3.1",
"babel-polyfill": "6.26.0",
"bignumber.js": "^9.0.1",
"binance-api-node": "0.8.18",
"crypto-random-string": "^3.3.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "3.4.0",
"ethereumjs-util": "^7.0.4",
"ethers": "^5.5.2",
"koa": "2.5.3",
"koa-bodyparser": "4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "7.4.0",
"lodash": ">=4.17.19",
"readline-sync": "1.4.9"
}
}