forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 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
{
"name": "@sushiswap/pool-job",
"version": "0.0.0",
"private": true,
"description": "Pool jobs",
"keywords": [
"pool",
"job"
],
"homepage": "https://www.sushi.com",
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/sushiswap.git",
"directory": "jobs/pools"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"check": "tsc --pretty --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"server": "tsx src/server.ts",
"start": "tsx src/server.ts"
},
"dependencies": {
"@ethersproject/address": "5.7.0",
"@ethersproject/bignumber": "5.7.0",
"@sushiswap/bonds-sdk": "workspace:*",
"@sushiswap/client": "workspace:*",
"@sushiswap/database": "workspace:*",
"@sushiswap/graph-client": "workspace:*",
"@sushiswap/steer-sdk": "workspace:*",
"@wagmi/core": "2.13.1",
"@whatwg-node/fetch": "0.8.4",
"connect-timeout": "1.9.0",
"date-fns": "2.29.3",
"ethers": "5.7.2",
"express": "4.18.2",
"lodash.zip": "4.2.0",
"sushi": "workspace:*",
"tsx": "^4.7.1",
"viem": "2.18.6",
"zod": "3.23.8"
},
"devDependencies": {
"@sushiswap/jest-config": "workspace:*",
"@swc/core": "1.4.2",
"@swc/helpers": "0.5.6",
"@tsconfig/esm": "1.0.4",
"@tsconfig/node18": "18.2.2",
"@types/connect-timeout": "0.0.36",
"@types/express": "4.17.15",
"@types/lodash.zip": "4.2.7",
"dotenv": "16.0.3",
"typescript": "5.4.5"
}
}