-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.05 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
{
"name": "checkout-svc",
"version": "1.0.0",
"private": true,
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
},
"scripts": {
"prebuild:api": "yarn --cwd ./apps/api run prebuild",
"build": "rm -rf dist && yarn build:api && yarn build:common",
"build:api": "nest build api",
"build:common": "nest build common",
"start:api:dev": "nest start api --watch",
"start:api:debug": "nest start api --debug --watch",
"start:api:prod": "nest start api",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --max-warnings=0",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./apps/nest-template/test/jest-e2e.json"
},
"dependencies": {
"@distributedlab/tools": "^1.0.0-rc.6",
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^7.0.2",
"@nestjs/terminus": "^10.0.1",
"@nestjsx/api-version": "^0.1.1",
"@pancakeswap/sdk": "3.1.4",
"@pancakeswap/smart-router": "0.6.1",
"@pancakeswap/swap-sdk-core": "0.0.1",
"@rarimo/bridge": "^2.0.0-rc.29",
"@rarimo/quickswap-sdk": "^3.0.8",
"@rarimo/shared": "^2.0.0-rc.29",
"@rarimo/swap": "^2.0.0-rc.29",
"@traderjoe-xyz/sdk": "2.0.7",
"@uniswap/router-sdk": "^1.4.0",
"@uniswap/sdk-core": "3.1.0",
"@uniswap/smart-order-router": "^2.10.0",
"@uniswap/token-lists": "1.0.0-beta.30",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"axios": "^0.21.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dtrace-provider": "^0.8.8",
"ethers": "^5.7.2",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nest-winston": "^1.9.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"winston": "^3.9.0"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4",
"@types/lodash": "^4",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]",
"resolutions": {
"@pancakeswap/sdk/@pancakeswap/swap-sdk-core": "0.0.1"
}
}