-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 949 Bytes
/
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
{
"name": "uniswap-smart-router-rest",
"version": "1.0.0",
"description": "Self-hosted REST API for interacting with the smart-order-router of uniswap",
"main": "src/app.ts",
"author": "HugaidaS",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./bin/app.js",
"dev": "ts-node ./src/app.ts",
"docker:build": "docker build -t uniswap-router-service .",
"docker:run": "docker run -p 8000:8000 --env-file .env --name uniswap-router-service uniswap-router-service"
},
"dependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.19",
"@types/node": "^20.8.6",
"@uniswap/sdk-core": "^7.1.0",
"@uniswap/smart-order-router": "^4.14.3",
"@uniswap/v3-sdk": "^3.21.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "5.7.2",
"express": "^4.21.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"eslint": "^8.51.0",
"ts-node": "^10.9.1"
}
}