-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.94 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.94 KB
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": "shapeshift-backend",
"version": "0.0.1",
"description": "ShapeShift Backend Services",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=22.0.0 <23.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"start:dev": "turbo run start:dev",
"test": "jest",
"lint": "eslint --cache \"{apps,packages}/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"format": "prettier --check \"**/*.{ts,js,json,md}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,md}\"",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:push": "turbo run db:push",
"clean": "turbo run clean && rm -rf node_modules",
"referral-rewards": "ts-node scripts/referral-rewards.ts"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@defuse-protocol/one-click-sdk-typescript": "^0.1.1-0.2",
"@metamask/eth-sig-util": "^7.0.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-socket.io": "^11.1.6",
"@nestjs/schedule": "^6.0.0",
"@nestjs/websockets": "^11.1.6",
"@pulumi/kubernetes": "4.23.0",
"@pulumi/pulumi": "3.160.0",
"@shapeshiftoss/caip": "8.16.7",
"@shapeshiftoss/chain-adapters": "11.3.6",
"@shapeshiftoss/swapper": "17.6.7",
"@shapeshiftoss/types": "8.6.5",
"@shapeshiftoss/unchained-client": "10.14.8",
"@shapeshiftoss/unchained-pulumi": "1.0.2",
"axios": "^1.7.4",
"dotenv": "^17.2.2",
"p-lazy": "3.1.0",
"protobufjs": "^7.5.4",
"socket.io": "^4.8.1",
"tronweb": "^6.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.0.0",
"jest": "^30.0.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"turbo": "^2.5.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"resolutions": {
"google-protobuf": "3.15.7"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"packageManager": "yarn@4.7.0"
}