-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.19 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
{
"name": "vnet-github-action",
"version": "1.0.5",
"description": "GitHub Action that sets up a Tenderly Virtual TestNet for blockchain development and testing",
"main": "dist/index.js",
"scripts": {
"prebuild": "rm -rf dist/",
"build:main": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"build:cleanup": "ncc build src/cleanup.js -o dist/temp --source-map && mv dist/temp/index.js dist/cleanup.js && rm -rf dist/temp",
"build:all": "npm run prebuild && npm run build:main && npm run build:cleanup",
"prepare": "npm run build:all",
"deploy:vnet": "yes | npx hardhat ignition deploy ./ignition/modules/Counter.js --network tenderly_ci --deployment-id deploy",
"test:vnet": "npx hardhat test --network tenderly_ci"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"axios": "^1.6.2",
"ethers": "^6.13.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@tenderly/hardhat-tenderly": "^2.3.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.0"
}
}