-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
101 lines (101 loc) · 3.29 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
{
"name": "@uniswap/uniswapx-parametrization-api",
"version": "0.0.1",
"bin": {
"app": "./dist/bin/app.js"
},
"license": "UNLICENSED",
"repository": "https://github.com/Uniswap/uniswapx-parameterization-api",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist cdk.out",
"watch": "tsc -w",
"test": "run-s build test:*",
"test:unit": "jest --detectOpenHandles --forceExit --testPathIgnorePatterns test/integ dist/",
"test:integ": "ts-mocha -p tsconfig.cdk.json -r dotenv/config test/integ/**/*.test.ts --timeout 50000",
"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:lint:cdk": "eslint bin --ext .ts",
"deploy": "yarn build && cdk deploy"
},
"devDependencies": {
"@shelf/jest-dynamodb": "^3.4.1",
"@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/jest": "^29.2.0",
"@types/node": "^18.17.1",
"@types/qs": "^6.9.7",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"aws-sdk-client-mock": "^2.0.0",
"esbuild": "^0.15.12",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"ethers": "^5.7.2",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"sinon": "^14.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@aws-cdk/aws-redshift-alpha": "^2.85.0-alpha.0",
"@aws-sdk/client-dynamodb": "^3.386.0",
"@aws-sdk/client-firehose": "^3.490.0",
"@aws-sdk/client-redshift-data": "^3.382.0",
"@aws-sdk/client-s3": "^3.304.0",
"@aws-sdk/lib-dynamodb": "^3.386.0",
"@smithy/node-http-handler": "^2.1.5",
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/async-retry": "^1.4.5",
"@uniswap/default-token-list": "^6.0.0",
"@uniswap/router-sdk": "^1.4.0",
"@uniswap/sdk-core": "^3.1.0",
"@uniswap/signer": "0.0.3-beta.4",
"@uniswap/smart-order-router": "^3.3.0",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@uniswap/uniswapx-sdk": "2.1.0-beta.4",
"@uniswap/v3-sdk": "^3.9.0",
"aws-cdk-lib": "2.85.0",
"aws-embedded-metrics": "^4.1.0",
"aws-sdk": "^2.1542.0",
"axios": "^1.2.1",
"axios-retry": "^3.4.0",
"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.8.5",
"esm": "^3.2.25",
"joi": "^17.7.0",
"mocha": "^10.2.0",
"node-cache": "^5.1.2",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"uuid": "^9.0.0"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"organizeImportsSkipDestructiveCodeActions": true
}
}