-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 918 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
{
"name": "stargate",
"version": "1.0.0",
"description": "Ethereum<->FEVM bridge",
"scripts": {
"accounts": "npm run accounts -w @stargate/hardhat",
"node": "npm run node -w @stargate/hardhat",
"clean": "npm run clean -w @stargate/hardhat",
"compile": "npm run compile -w @stargate/hardhat",
"coverage": "npm run coverage -w @stargate/hardhat",
"relayer": "npm run relayer -w @stargate/relayer",
"test": "npm run test -w @stargate/hardhat",
"verify": "npm run verify -w @stargate/hardhat",
"dev": "npm run dev -w @stargate/next-app",
"build": "npm run build -w @stargate/next-app",
"start": "npm run start -w @stargate/next-app",
"lint": "npm run lint -w @stargate/next-app"
},
"author": "Team Stargate",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/hardhat",
"**/hardhat/**"
]
}
}