-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.29 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.29 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
{
"name": "noosphere-evm",
"version": "1.0.0",
"description": "End-to-end testing scripts for the Noosphere EVM protocol.",
"private": true,
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "forge build",
"deploy": "make deploy-anvil",
"anvil": "anvil --host 0.0.0.0",
"anvil-background": "anvil --host 0.0.0.0 &",
"agent": "node webapp/src/agent.js",
"client": "node webapp/src/client.js",
"test:e2e": "concurrently --kill-others-on-fail -s last --names \"AGENT,CLIENT\" -c \"magenta,green\" \"npm run agent\" \"sleep 5 && npm run client\"",
"test:e2e:verfier": "concurrently --kill-others-on-fail -s client --names \"ANVIL,DEPLOY,AGENT,CLIENT\" -c \"blue,yellow,magenta,green\" \"npm run anvil\" \"sleep 2 && npm run deploy\" \"sleep 15 && node webapp/src/onchain_verify_agent.js.js\" \"sleep 20 && node webapp/src/onchain_verify_client.js && npx kill-port 8545\""
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hpp-io/noosphere-evm/issues"
},
"homepage": "https://github.com/hpp-io/noosphere-evm#readme",
"dependencies": {
"dotenv": "^17.2.3",
"ethers": "^6.15.0"
},
"devDependencies": {
"concurrently": "^9.2.1",
"kill-port": "^2.0.1"
}
}