-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 2.28 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": "mycelium-ethereum",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev:keepers": "npx nx run swaps-keepers:dev",
"dev:prices": "npx nx run swaps-prices:dev",
"dev:order-keeper": "npx nx run swaps-order-keeper:dev",
"dev:liquidator": "npx nx run swaps-liquidator:dev",
"build": "npx nx affected --target=build --all",
"test": "npx nx affected --target=test --all",
"lint": "npx nx affected --target=lint --all",
"format": "npx nx format:write",
"format:check": "npx nx format:check",
"build:swaps-js": "npx nx build swaps-js",
"generate:lib": "npx nx generate @nrwl/js:library $1 --importPath @mycelium-ethereum/$1",
"generate:node": "npx nx generate @nrwl/node:app $1 --importPath @mycelium-ethereum/$1"
},
"private": true,
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@mycelium-ethereum/perpetual-swaps-contracts": "^1.0.3",
"bignumber.js": "^9.1.1",
"bn.js": "^5.2.1",
"colors": "^1.4.0",
"dotenv": "^16.0.2",
"ethers": "^5.7.2",
"express": "^4.18.1",
"mongoose": "^6.6.2",
"node-cache": "^5.1.2",
"node-fetch": "2.6.7",
"prom-client": "^14.1.0",
"rate-limiter-flexible": "^2.4.1",
"tiny-typed-emitter": "^2.1.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@nrwl/cli": "15.2.4",
"@nrwl/eslint-plugin-nx": "15.2.4",
"@nrwl/jest": "15.2.4",
"@nrwl/js": "15.2.4",
"@nrwl/linter": "15.2.4",
"@nrwl/node": "15.2.4",
"@nrwl/nx-cloud": "latest",
"@nrwl/workspace": "15.2.4",
"@types/jest": "28.1.1",
"@types/node": "18.7.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"nx": "15.2.4",
"prettier": "^2.6.2",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"typescript": "~4.8.2"
}
}