-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "mud-template-react-ecs",
"private": true,
"scripts": {
"build": "pnpm recursive run build",
"dev": "mprocs",
"dev:client": "pnpm --filter 'client' run dev",
"dev:contracts": "pnpm --filter 'contracts' dev",
"foundry:up": "curl -L https://foundry.paradigm.xyz | bash && bash $HOME/.foundry/bin/foundryup",
"mud:up": "pnpm mud set-version --tag main && pnpm install",
"prepare": "(forge --version || pnpm foundry:up)",
"test": "pnpm recursive run test",
"start": "./start.sh",
"stop": "./stop.sh",
"postinstall": "patch-package"
},
"devDependencies": {
"@latticexyz/cli": "2.0.0-next.15",
"@types/debug": "4.1.7",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"@uniswap/sdk-core": "5.3.1",
"@uniswap/smart-order-router": "3.17.3",
"@uniswap/universal-router-sdk": "2.2.2",
"@uniswap/v3-sdk": "^3.10.2",
"buffer": "^6.0.3",
"eslint": "8.29.0",
"jsbi": "3.2.5",
"jsonwebtoken": "^9.0.2",
"mprocs": "^0.6.4",
"patch-package": "^8.0.0",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"typescript": "5.1.6"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
},
"resolutions": {
"@uniswap/sdk-core": "5.3.1",
"@uniswap/universal-router-sdk": "2.2.2"
},
"dependencies": {
"ethers": "^5.0.19"
},
"pnpm": {
"patchedDependencies": {
"@uniswap/smart-order-router@3.17.3": "@uniswap__smart-order-router@3.17.3.patch"
}
}
}