-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.87 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
{
"name": "@premia/v3-api",
"version": "0.5.10",
"description": "Containerize API for Premia V3 Orderbook",
"author": "research@premia.finance",
"license": "BSD-3-Clause",
"keywords": [
"premia",
"v3",
"sdk",
"api",
"ethereum",
"defi",
"options",
"trading",
"and",
"market-making"
],
"scripts": {
"build": "tsc --build",
"start": "node ./dist/index.js",
"prettier": "./node_modules/.bin/prettier --write --ignore-path .gitignore ./src/**",
"e2e:account": "mocha --require ts-node/register src/test/account.ts --timeout 60000",
"e2e:pool": "mocha --require ts-node/register src/test/pool.ts --timeout 60000",
"e2e:quoting": "mocha --require ts-node/register src/test/quoting.ts --timeout 600000",
"e2e:ws": "mocha --require ts-node/register src/test/ws.ts --timeout 60000",
"e2e:oracles": "mocha --require ts-node/register src/test/oracles.ts --timeout 60000",
"e2e:vaults": "mocha --require ts-node/register src/test/vaults.ts --timeout 60000"
},
"dependencies": {
"@premia/v3-abi": "^1.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.197",
"@types/node": "^18.13.0",
"@types/ws": "^8.5.4",
"@unkey/api": "^0.13.1",
"ajv": "^8.12.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^6.8.1",
"ethers-multicall-provider": "^6.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"typescript": "^5.2.2",
"web3-utils": "^1.9.0",
"winston": "^3.9.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"chai": "^4.3.7",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript-json-schema": "^0.62.0"
},
"engines": {
"node": ">=18"
}
}