-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 927 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
{
"name": "eth-mail",
"version": "1.0.0",
"repository": "[email protected]:ethereumpostalservice/eps-core.git",
"author": "sragss, rsproule",
"license": "MIT",
"private": true,
"workspaces": [
"test",
"widget",
"status-site",
"contracts",
"lib"
],
"scripts": {
"test": "cd contracts && forge test -vvv",
"start-local-backend": "cd contracts && anvil",
"deploy-local-backend": "cd contracts && forge script script/DeployLocal.s.sol:DeployLocal --rpc-url http://localhost:8545 --broadcast",
"call-local-backend": "cd contracts && forge script script/CallLocal.s.sol:CallLocal --rpc-url http://localhost:8545 --broadcast",
"build": "cd contracts && forge build",
"integration-test": "cd test && yarn test",
"start-widget": "cd widget && npm run start",
"build-widget": "cd widget && npm run build",
"start-status-site": "cd status-site & npm run start"
}
}