forked from Uniswap/unified-routing-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.58 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
106
{
"name": "@uniswap/unified-routing-api",
"version": "0.0.1",
"bin": {
"app": "./dist/bin/app.js"
},
"license": "UNLICENSED",
"repository": "https://github.com/Uniswap/unified-routing-api",
"scripts": {
"compile-external-types": "npx typechain --target ethers-v5 --out-dir lib/types/ext 'lib/abis/**/*.json'",
"compile-v3-contract-types": "npx typechain --target ethers-v5 --out-dir lib/types/v3 './node_modules/@uniswap/?(v3-core|v3-periphery)/artifacts/contracts/**/*.json'",
"build": "run-p compile-*-types && tsc",
"clean": "rm -rf dist cdk.out",
"watch": "tsc -w",
"test": "jest --testPathPattern test/unit --detectOpenHandles --forceExit",
"test:integ": "ts-mocha -p tsconfig.cdk.json -r dotenv/config test/integ/**/*.test.ts",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"lib/**/*.ts\" --write",
"fix:prettiertest": "prettier \"test/**/*.ts\" --write",
"fix:lint": "eslint lib test --ext .ts --fix",
"fix:lint:cdk": "eslint bin --ext .ts --fix",
"lint": "run-s lint:*",
"lint:prettier": "prettier \"lib/**/*.ts\"",
"lint:prettiertest": "prettier \"test/**/*.ts\"",
"lint:eslint": "eslint lib --ext .ts",
"lint:lint:cdk": "eslint bin --ext .ts",
"deploy": "yarn build && cdk deploy"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@types/aws-lambda": "^8.10.108",
"@types/bunyan": "^1.8.8",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
"@types/hapi__joi": "^17.1.9",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^18.15.11",
"@types/qs": "^6.9.7",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"async-retry": "^1.3.3",
"aws-sdk-client-mock": "^2.0.0",
"esbuild": "^0.15.12",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"ts-jest": "^29.0.3",
"ts-node": "^8.10.2",
"typescript": "^4.2.3"
},
"dependencies": {
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@typechain/ethers-v5": "^7.0.1",
"@uniswap/default-token-list": "^11.7.0",
"@uniswap/permit2-sdk": "^1.2.0",
"@uniswap/router-sdk": "^1.4.0",
"@uniswap/sdk-core": "^4.0.7",
"@uniswap/smart-order-router": "3.17.1",
"@uniswap/uniswapx-sdk": "1.5.0-alpha.7",
"@uniswap/universal-router-sdk": "1.7.1",
"aws-cdk-lib": "2.85.0",
"aws-embedded-metrics": "^4.1.0",
"axios": "^1.2.1",
"axios-retry": "^3.4.0",
"bignumber.js": "^9.1.2",
"bunyan": "^1.8.15",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"constructs": "^10.1.137",
"dotenv": "^16.0.3",
"dynamodb-toolbox": "^0.6.1",
"esm": "^3.2.25",
"joi": "^17.7.0",
"ms": "^2.1.3",
"node-cache": "^5.1.2",
"sinon": "^15.1.0",
"source-map-support": "^0.5.21",
"tiny-invariant": "^1.3.1",
"ts-mocha": "^10.0.0",
"typechain": "^5.0.0",
"uuid": "^9.0.0"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"organizeImportsSkipDestructiveCodeActions": true
}
}