-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.71 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
{
"name": "se-2",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"account": "yarn foundry:account",
"account:generate": "yarn foundry:generate",
"account:import": "yarn foundry:account-import",
"chain": "yarn foundry:chain",
"compile": "yarn foundry:compile",
"deploy": "yarn foundry:deploy",
"fork": "yarn foundry:fork",
"format": "yarn next:format && yarn foundry:format",
"foundry:account": "yarn workspace @se-2/foundry account",
"foundry:account-import": "yarn workspace @se-2/foundry account:import",
"foundry:chain": "yarn workspace @se-2/foundry chain",
"foundry:compile": "yarn workspace @se-2/foundry compile",
"foundry:deploy": "yarn workspace @se-2/foundry deploy",
"foundry:deploy-verify": "yarn workspace @se-2/foundry deploy:verify",
"foundry:flatten": "yarn workspace @se-2/foundry flatten",
"foundry:fork": "yarn workspace @se-2/foundry fork",
"foundry:format": "yarn workspace @se-2/foundry format",
"foundry:generate": "yarn workspace @se-2/foundry account:generate",
"foundry:lint": "yarn workspace @se-2/foundry lint",
"foundry:test": "yarn workspace @se-2/foundry test",
"foundry:verify": "yarn workspace @se-2/foundry verify",
"generate": "yarn foundry:generate",
"postinstall": "husky install",
"lint": "yarn nextjs:lint && yarn foundry:lint",
"next:build": "yarn workspace @se-2/nextjs build",
"next:check-types": "yarn workspace @se-2/nextjs check-types",
"next:format": "yarn workspace @se-2/nextjs format",
"next:lint": "yarn workspace @se-2/nextjs lint",
"next:serve": "yarn workspace @se-2/nextjs serve",
"precommit": "lint-staged",
"start": "yarn workspace @se-2/nextjs dev",
"test": "yarn foundry:test",
"vercel": "yarn workspace @se-2/nextjs vercel",
"vercel:login": "yarn workspace @se-2/nextjs vercel:login",
"vercel:yolo": "yarn workspace @se-2/nextjs vercel:yolo",
"verify": "yarn foundry:verify",
"supersim:build": "docker build -t supersim:latest supersim",
"supersim": "docker run --rm -it --network host supersim:latest",
"supersim:fork": "docker run --rm -it --network host supersim:latest fork --chains=op,base,zora --interop.enabled --interop.autorelay ",
"foundry:script": "yarn workspace @se-2/foundry script"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"hardhat": "^2.22.19",
"husky": "~8.0.3",
"lint-staged": "~13.2.2"
},
"packageManager": "yarn@3.2.3",
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"ethers": "5.8.0"
},
"resolutions": {
"ethers": "5.8.0"
}
}