forked from Uniswap/routing-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.81 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.81 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
{
"name": "@juiceswap/routing-api",
"version": "1.0.0",
"description": "Platform-agnostic routing API for JuiceSwap",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "prisma generate && tsc && npm run postbuild",
"postbuild": "copyfiles -u 1 \"src/generated/**/*\" dist/",
"start": "node dist/server.js",
"postinstall": "prisma generate",
"test": "jest",
"test:unit": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:status": "prisma migrate status",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@apollo/server": "^4.12.2",
"@getalby/lightning-tools": "^6.0.0",
"@juicedollar/jusd": "^3.0.0",
"@juiceswapxyz/router-sdk": "^3.0.4",
"@juiceswapxyz/sdk-core": "^3.0.4",
"@juiceswapxyz/smart-order-router": "^3.0.4",
"@juiceswapxyz/universal-router-sdk": "^3.0.4",
"@juiceswapxyz/v2-sdk": "^3.0.4",
"@juiceswapxyz/v3-sdk": "^3.0.5",
"@juiceswapxyz/v4-sdk": "^3.0.3",
"@prisma/client": "^6.17.1",
"@uniswap/default-token-list": "^11.19.0",
"@uniswap/permit2-sdk": "^1.3.0",
"@uniswap/token-lists": "^1.0.0-beta.33",
"axios": "^1.12.2",
"bech32": "^2.0.0",
"bunyan": "^1.8.15",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"graphql": "^16.11.0",
"graphql-request": "^6.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"node-cache": "^5.1.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1",
"viem": "^2.44.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/bunyan": "^1.8.9",
"@types/express": "^4.17.21",
"@types/helmet": "^0.0.48",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.14.202",
"@types/multer": "^1.4.12",
"@types/node": "^20.10.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"prisma": "^6.17.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/juiceswap/routing-api-clean.git"
},
"license": "GPL-3.0"
}