-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
77 lines (77 loc) · 2.48 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
{
"name": "balancer-pools-api",
"version": "0.1.0",
"description": "A service that acts as a caching layer for Balancer Pools information",
"private": true,
"repository": "balancer-labs/pools-api",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"build-cdk": "tsc --project ./tsconfig.cdk.json",
"cdk": "cdk",
"deploy": "npm run build-cdk && cdk deploy",
"dynamodb": "docker compose up -d",
"init": "node dist/scripts/init.js",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"node": "npx hardhat node",
"prepare": "node ./prepare.js",
"prettier": "prettier --check '**/*.*(md|json|yaml|ts)' --loglevel warn",
"prettier:fix": "npm run prettier -- --write",
"start": "node dist/server.js",
"test": "jest -- src",
"test:e2e": "jest -- tests/e2e",
"update-schemas": "node dist/scripts/update-schemas.ts",
"watch": "tsc -w",
"worker": "node dist/worker.js",
"script:test": "ts-node -r tsconfig-paths/register -r dotenv/config ./scripts/test.ts"
},
"lint-staged": {
"*.{ts}": "eslint --cache --fix --max-warnings 0",
"*.{md,json,yaml,html}": "prettier --write"
},
"license": "MIT",
"dependencies": {
"@aws-cdk/aws-appsync-alpha": "^2.33.0-alpha.0",
"@aws/dynamodb-auto-marshaller": "^0.7.1",
"@balancer-labs/sdk": "^1.1.6-beta.23",
"@ethersproject/contracts": "^5.0.5",
"@ethersproject/providers": "^5.0.5",
"@sentry/serverless": "^7.29.0",
"aws-cdk-lib": "^2.144.0",
"aws-sdk": "^2.1181.0",
"bignumber.js": "^9.0.1",
"constructs": "^10.1.50",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"ethers": "^5.3.0",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"json-to-graphql-query": "^2.2.4",
"lodash": "^4.17.21",
"tsx": "^3.12.2"
},
"devDependencies": {
"@balancer-labs/typechain": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"api-benchmark": "^1.0.1",
"esbuild": "*",
"eslint": "^8.3.0",
"fishery": "^2.2.2",
"hardhat": "^2.12.6",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^13.1.0",
"nock": "^13.2.4",
"prettier": "^2.3.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.2.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.3.5"
}
}