-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 3.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@bluefin-exchange/bluefin-v2-client",
"version": "6.2.0",
"description": "The Bluefin client Library allows traders to sign, create, retrieve and listen to orders on Bluefin Exchange.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "ts-mocha --timeout 100000 tests/*.test.ts",
"prepare": "husky install",
"debug": "ts-node ./scripts/myDebuger.ts",
"lint": "yarn eslint --fix --cache --max-warnings=-1 .",
"format-all": "yarn prettier --write .",
"format-staged": "git-format-staged -f \"prettier '{}'\" '**/*.js' '**/*.json' '**/*.ts' ",
"ci:code-formatting": "yarn prettier --check .",
"ci:code-style": "yarn eslint .",
"build:watch": "tsc-watch --onSuccess 'yarn build'",
"initialisation": "ts-node ./examples/11.get_user_orders.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/fireflyprotocol/bluefin-v2-client.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fireflyprotocol/bluefin-v2-client/issues"
},
"homepage": "https://github.com/fireflyprotocol/bluefin-v2-client#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/es6-promisify": "^6.0.1",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"git-format-staged": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.8.8",
"ts-loader": "^9.3.1",
"ts-mocha": "^10.0.0",
"tsc-watch": "^6.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@firefly-exchange/library-sui": "^2.5.5",
"@mysten/sui": "^1.17.0",
"@mysten/zklogin": "^0.7.22",
"@noble/hashes": "^1.2.0",
"@noble/secp256k1": "^1.7.1",
"add": "^2.0.6",
"avsc": "^5.7.6",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.1.4",
"es6-promisify": "^7.0.0",
"eth-rpc-errors": "^4.0.3",
"interpolate": "^0.1.0",
"lodash": "^4.17.21",
"socket.io-client": "^4.5.1",
"ts-binary-serializer": "^2.1.3",
"typescript": "^5.1.6",
"ws": "^8.11.0",
"yargs": "^17.6.2",
"yarn": "^1.22.19"
},
"keywords": [
"bluefin",
"exchange",
"client",
"decentralized",
"orderbook"
],
"lint-staged": {
"**/*.{js,ts,json}": "prettier --write",
"**/*.{js,ts}": "eslint --fix"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"browser": {
"fs": false,
"net": false,
"tls": false
}
}