-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.55 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
{
"name": "@cowprotocol/root",
"description": "Backend for frontend is a series of backend services and libraries that enhance user experience for the frontend",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "yarn start:api",
"start:api": "nx run api:start",
"twap:run-migrations": "nx run twap:run-migrations",
"twap:generate-migrations": "nx run twap:generate-migrations",
"producer": "nx run notification-producer:start",
"telegram": "nx run telegram:start",
"build": "nx run-many --all --target=build",
"test": "nx run-many --all --target=test",
"new:fastify": "nx generate @nx/node:application --framework=fastify --docker --directory=apps",
"new:node": "nx generate @nx/node:application --directory=apps --docker",
"new:lib": "nx g @nx/node:library --directory=libs",
"docker-build:affected": "nx affected -t docker-build --prod --parallel --maxParallel=3 --skip-nx-cache --skip-nx-cache",
"compose:up": "yarn docker-build:affected && docker-compose up",
"swagger": "ts-node scripts/fetchCoingeckoSwagger",
"gen:types": "npx openapi-typescript",
"postinstall": "yarn gen:types",
"test:api:slippage": "node apps/api/scripts/test-slippage.js"
},
"private": true,
"dependencies": {
"@cowprotocol/cms": "^0.3.0-RC.4",
"@cowprotocol/cow-sdk": "5.2.0",
"@fastify/autoload": "~5.7.1",
"@fastify/caching": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/http-proxy": "^9.0.0",
"@fastify/redis": "^6.2.0",
"@fastify/sensible": "~5.2.0",
"@fastify/swagger": "^8.6.0",
"@fastify/swagger-ui": "^1.9.2",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@uniswap/sdk-core": "^4.0.1",
"abstract-cache-redis": "^2.0.0",
"amqplib": "^0.10.4",
"axios": "^1.0.0",
"bignumber.js": "^9.1.2",
"ethers": "^5.7.2",
"fastify": "~4.13.0",
"fastify-caching": "^6.3.0",
"fastify-cli": "^5.7.1",
"fastify-plugin": "~4.5.0",
"inversify": "^6.0.2",
"ioredis": "^5.4.1",
"json-schema-to-ts": "^2.9.1",
"ms": "^2.1.3",
"mustache": "^4.2.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "^0.65.1",
"openapi-fetch": "^0.10.2",
"pg": "^8.11.1",
"reflect-metadata": "^0.2.2",
"tslib": "^2.3.0",
"typeorm": "^0.3.17",
"typeorm-fastify-plugin": "^1.0.5",
"viem": "^2.18.4"
},
"devDependencies": {
"@nx/esbuild": "16.3.2",
"@nx/eslint-plugin": "16.3.2",
"@nx/jest": "16.3.2",
"@nx/js": "16.3.2",
"@nx/linter": "16.3.2",
"@nx/node": "16.3.2",
"@nx/vite": "^16.4.3",
"@nx/workspace": "16.3.2",
"@typechain/ethers-v5": "^11.0.0",
"@types/amqplib": "^0.10.5",
"@types/bignumber.js": "^5.0.0",
"@types/jest": "^29.5.0",
"@types/ms": "^0.7.34",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.11",
"@types/node-telegram-bot-api": "^0.64.6",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"concurrently": "^7.0.0",
"dotenv": "^16.3.1",
"esbuild": "^0.17.17",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"fastify-tsconfig": "^1.0.1",
"jest": "^29.5.0",
"jest-environment-node": "^29.4.1",
"nx": "16.3.2",
"openapi-typescript": "^7.0.2",
"pino-pretty": "^11.2.2",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.5.3",
"vite-plugin-dts": "^3.0.3",
"vite-tsconfig-paths": "^4.2.0"
}
}