forked from Uniswap/routing-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.83 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
{
"name": "@uniswap/routing-api",
"version": "0.1.0",
"bin": {
"app": "./dist/bin/app.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist cdk.out",
"watch": "tsc -w",
"test": "jest test/unit test/cdk",
"integ-test": "jest test/integ",
"cdk": "cdk",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.77",
"@types/bunyan": "^1.8.6",
"@types/hapi__joi": "^17.1.6",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.9",
"@types/node": "14.0.27",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"esbuild": "^0.12.8",
"eslint": "^7.29.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.3.0",
"json-schema-to-ts": "^1.6.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-organize-imports": "^2.1.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typechain": "^5.0.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@aws-cdk/assert": "^1.109.0",
"@aws-cdk/aws-apigateway": "^1.109.0",
"@aws-cdk/aws-codepipeline": "^1.109.0",
"@aws-cdk/aws-codepipeline-actions": "^1.109.0",
"@aws-cdk/aws-events": "^1.109.0",
"@aws-cdk/aws-events-targets": "^1.109.0",
"@aws-cdk/aws-iam": "^1.109.0",
"@aws-cdk/aws-lambda": "^1.109.0",
"@aws-cdk/aws-lambda-nodejs": "^1.109.0",
"@aws-cdk/aws-logs": "^1.109.0",
"@aws-cdk/aws-s3": "^1.109.0",
"@aws-cdk/aws-secretsmanager": "^1.109.0",
"@aws-cdk/core": "^1.109.0",
"@aws-cdk/pipelines": "^1.109.0",
"@hapi/joi": "^17.1.1",
"@middy/core": "^2.4.1",
"@middy/http-error-handler": "^2.4.1",
"@middy/http-json-body-parser": "^2.4.1",
"@middy/http-urlencode-path-parser": "^2.4.1",
"@middy/input-output-logger": "^2.4.1",
"@middy/validator": "^2.4.1",
"@typechain/ethers-v5": "^7.0.1",
"@types/async-retry": "^1.4.2",
"@uniswap/sdk-core": "3.0.0",
"@uniswap/smart-order-router": "1.7.1",
"@uniswap/token-lists": "^1.0.0-beta.24",
"@uniswap/v3-periphery": "^1.1.0",
"@uniswap/v3-sdk": "3.1.0",
"async-retry": "^1.3.1",
"aws-embedded-metrics": "^2.0.4",
"aws-sdk": "^2.927.0",
"aws-xray-sdk": "^3.3.3",
"axios": "^0.21.1",
"bunyan": "^1.8.15",
"eslint-plugin-jest": "^24.3.6",
"ethers": "5.1.4",
"got": "^11.8.2",
"graphql-request": "^3.4.0",
"http-errors": "^1.7.3",
"http-json-errors": "^1.2.10",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"punycode": "^2.1.1",
"source-map-support": "^0.5.19",
"uuid": "^3.4.0"
},
"prettier": {
"singleQuote": true
}
}