-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
88 lines (88 loc) · 2.75 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
{
"name": "@uniswap/uniswapx-service",
"version": "0.1.0",
"bin": {
"app": "./dist/bin/app.js"
},
"license": "GPL",
"type": "commonjs",
"repository": "https://github.com/Uniswap/uniswapx-service",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist cdk.out",
"watch": "tsc -w",
"test": "jest --testPathPattern=\"test/(unit|factories)\"",
"test:watch": "yarn test --watch",
"test:integ": "jest --detectOpenHandles --forceExit --testPathPattern=test/integ/",
"test:e2e": "jest --detectOpenHandles --runInBand --testPathPattern=test/e2e/",
"cdk": "cdk",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"lib/**/*.ts\" --write",
"fix:lint": "eslint lib --ext .ts --fix",
"lint": "eslint lib test --ext .ts",
"coverage": "jest --detectOpenHandles --runInBand --forceExit --coverage --testPathPattern=\"test/(factories/|unit/|integ/)\""
},
"devDependencies": {
"@shelf/jest-dynamodb": "^3.4.4",
"@types/aws-lambda": "^8.10.108",
"@types/bunyan": "^1.8.8",
"@types/chai-subset": "^1.3.3",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.4",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"aws-sdk-client-mock": "^2.1.1",
"esbuild": "^0.15.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.9.0",
"ethers": "^5.7.2",
"jest": "^29.2.2",
"jest-mock-extended": "^3.0.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",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^1.18.0",
"@aws-lambda-powertools/metrics": "^1.18.0",
"@aws-sdk/client-kms": "^3.621.0",
"@aws-sdk/client-s3": "^3.341.0",
"@aws-sdk/client-sfn": "^3.341.0",
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/sinon": "^10.0.13",
"@uniswap/signer": "^0.0.4",
"@uniswap/uniswapx-sdk": "^2.1.0-beta.22",
"aws-cdk-lib": "2.85.0",
"aws-embedded-metrics": "^4.1.0",
"aws-sdk": "^2.1238.0",
"axios": "^1.2.1",
"bunyan": "^1.8.15",
"constructs": "^10.1.137",
"dotenv": "^16.0.3",
"dynamodb-toolbox": "^0.5.0",
"env-cmd": "^10.1.0",
"esm": "^3.2.25",
"express": "^4.18.2",
"joi": "^17.7.0",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}