-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "voodle",
"version": "1.0.0",
"description": "Trading Made Easy",
"author": "Julien Coulaud",
"private": true,
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"db:generate": "pnpm drizzle-kit generate --name",
"db:migrate": "pnpm tsx --no-cache src/db/migrate.ts",
"db:drop": "pnpm drizzle-kit drop",
"start:pool": "pnpm tsx --no-cache src/services/pool-manager/start.ts",
"start:trading": "pnpm tsx --no-cache src/services/trade-manager/start.ts",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=development nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"gitleaks": "gitleaks detect --source . -v"
},
"dependencies": {
"@apollo/server": "^4.10.5",
"@dedust/sdk": "^0.8.7",
"@nestjs/apollo": "^12.2.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/bull": "^10.2.0",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/graphql": "^12.2.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/schedule": "^4.1.0",
"@nestjs/throttler": "^6.2.1",
"@orbs-network/ton-access": "^2.3.3",
"@ston-fi/sdk": "^1.0.0",
"@ton/core": "^0.56.3",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.11.2",
"@types/eventsource": "^1.1.15",
"@types/passport-jwt": "^4.0.1",
"apollo-server-express": "^3.13.0",
"axios": "^1.7.2",
"axios-retry": "^4.4.1",
"bignumber.js": "^9.1.2",
"bull": "^4.16.0",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.6",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.31.2",
"eventsource": "^2.0.2",
"graphql": "^16.9.0",
"graphql-scalars": "^1.23.0",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"passport-jwt": "^4.0.1",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"resend": "^3.5.0",
"rxjs": "^7.8.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/event-source-polyfill": "^1.0.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.9",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.6",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.7",
"tsx": "^4.15.8",
"typescript": "^5.5.2"
}
}