-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
107 lines (107 loc) · 4.02 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
107
{
"name": "backend",
"version": "1.23.1",
"description": "Backend service for Beethoven X and Balancer",
"repository": "https://github.com/balancer/backend",
"author": "Beethoven X",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/apps/main.js",
"dev": "ts-node-dev -r dotenv/config -r tsconfig-paths/register apps/main",
"build": "tsc -p tsconfig.build.json",
"cleanup-console": "find dist -type f -name \"*.js\" -exec sed -i '/console\\.time(\\(.*\\))\\;/d;/console\\.timeEnd(\\(.*\\))\\;/d' {} \\;",
"generate": "graphql-codegen --config codegen.ts",
"prisma-merge": "ts-node prisma/prisma-merge.ts",
"test": "jest",
"vitest": "vitest",
"task": "ts-node -r tsconfig-paths/register -r dotenv/config tasks/index.ts",
"mutation": "sh scripts/run_mutation.sh"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.388.0",
"@aws-sdk/client-secrets-manager": "^3.195.0",
"@aws-sdk/client-sqs": "^3.137.0",
"@balancer-labs/balancer-maths": "^0.0.11",
"@balancer-labs/sdk": "github:beethovenxfi/balancer-sdk#beethovenx-master",
"@balancer/sdk": "0.22.2",
"@ethersproject/address": "^5.6.0",
"@ethersproject/bignumber": "^5.6.0",
"@ethersproject/constants": "^5.6.0",
"@gnosis.pm/safe-core-sdk": "^1.2.0",
"@googleapis/sheets": "^9.0.0",
"@graphql-tools/load-files": "^6.5.2",
"@graphql-tools/merge": "^8.2.1",
"@prisma/client": "4.10.0",
"@sanity/client": "^2.23.1",
"@sentry/integrations": "^7.0.0",
"@sentry/node": "^8.0.0",
"@sentry/profiling-node": "^8.0.0",
"@sentry/tracing": "^7.0.0",
"abitype": "^1.0.0",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"axios": "^0.24.0",
"bignumber.js": "^9.0.2",
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"graphql": "^16.0.1",
"graphql-request": "^3.6.1",
"graphql-type-json": "^0.3.2",
"helmet": "^5.0.2",
"limiter": "^2.1.0",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"moment-timezone": "^0.5.34",
"node-cron": "^3.0.0",
"prisma": "4.10.0",
"safe-compare": "^1.1.4",
"stellate": "2.7.1",
"ts-dotenv": "^0.8.1",
"uuid": "^8.3.2",
"viem": "^2.12.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@faker-js/faker": "^8.4.1",
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.0.0",
"@graphql-codegen/introspection": "^2.1.0",
"@graphql-codegen/schema-ast": "^2.4.0",
"@graphql-codegen/typescript": "2.4.0",
"@graphql-codegen/typescript-document-nodes": "^2.2.0",
"@graphql-codegen/typescript-graphql-request": "^4.3.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@graphql-codegen/typescript-resolvers": "2.4.1",
"@graphql-tools/schema": "^8.3.1",
"@types/graphql-type-json": "^0.3.2",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.177",
"@types/memory-cache": "^0.2.1",
"@types/node": "^18.0.0",
"@types/node-cron": "^3.0.0",
"@types/pino-http": "^5.8.1",
"@types/safe-compare": "^1.1.0",
"@types/signale": "^1.4.4",
"@types/uuid": "^8.0.0",
"@viem/anvil": "0.0.7",
"execa": "^4.1.0",
"fishery": "^2.2.2",
"jest": "^28.1.3",
"jest-watch-typeahead": "^1.0.0",
"msw": "^0.47.3",
"prettier": "^2.0.2",
"testcontainers": "^8.0.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vitest": "^0.32.4",
"vitest-mock-extended": "^1.1.3"
}
}