-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "euler-swap-api",
"version": "1.0.0",
"description": "API for fetching swap quotes and building swap txs for Euler V2",
"author": "Euler labs",
"repository": "euler-xyz/euler-swap-api",
"license": "MIT",
"main": "index.ts",
"private": true,
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsup",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/",
"test": "vitest run",
"prepare": "husky",
"doppler:login": "./scripts/dopplerLogin.sh",
"doppler:syncdev": "TOKEN=dev ./scripts/dopplerSync.sh",
"doppler:syncstg": "TOKEN=stg ./scripts/dopplerSync.sh",
"doppler:syncprd": "TOKEN=prd ./scripts/dopplerSync.sh"
},
"packageManager": "[email protected]",
"dependencies": {
"@asteasolutions/zod-to-openapi": "7.2.0",
"@balmy/sdk": "0.4.8",
"@uniswap/router-sdk": "1.15.0",
"@uniswap/sdk-core": "6.1.1",
"@uniswap/smart-order-router": "4.9.2",
"@uniswap/v3-sdk": "3.19.0",
"cors": "2.8.5",
"dotenv": "16.4.5",
"ethers": "5.7.2",
"express": "4.21.1",
"express-rate-limit": "7.4.1",
"helmet": "8.0.0",
"http-status-codes": "2.3.0",
"pino": "9.5.0",
"pino-http": "10.3.0",
"qs": "^6.13.1",
"swagger-ui-express": "5.0.1",
"viem": "^2.21.53",
"zod": "3.23.8"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched"
]
},
"tsup": {
"entry": ["src", "!src/**/__tests__/**", "!src/**/*.test.*"],
"splitting": false,
"sourcemap": true,
"clean": true
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"pino-pretty": "^13.0.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6"
}
}