-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
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
{
"name": "solidity-framework",
"version": "1.0.0",
"description": "A General Solidity Development and Testing Framework/CLI.",
"main": "index.js",
"bin": {
"sol-dev": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VegieDoggie/solidity-framework.git"
},
"scripts": {
"gen_chainData": "ts-node __scripts__/gen_chainData.ts",
"copy_README": "ts-node __scripts__/copy_README.ts",
"copy_template": "ts-node __scripts__/copy_template.ts",
"only-build": "node esbuild",
"build": "node esbuild && npm run copy_template && npm run copy_README"
},
"keywords": [
"solidity",
"hardhat",
"foundry",
"blockchain",
"ethers",
"bootstrap",
"solidity-framework",
"openzeppelin",
"uniswap",
"chainlink",
"etheruem",
"framework",
"cli"
],
"author": "aitimate",
"license": "MIT",
"bugs": {
"url": "https://github.com/VegieDoggie/solidity-framework/issues"
},
"homepage": "https://github.com/VegieDoggie/solidity-framework#readme",
"devDependencies": {
"@types/async": "^3.2.23",
"@types/cli-progress": "^3.11.4",
"@types/cli-table": "^0.3.3",
"@types/fs-extra": "^11.0.3",
"@types/inquirer": "^9.0.6",
"@types/node-fetch": "^2.6.9",
"esbuild": "^0.19.5",
"node-fetch": "^2.7.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.0",
"arg": "^5.0.2",
"async": "^3.2.5",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"cli-progress": "^3.12.0",
"cli-table": "^0.3.11",
"commander": "^11.1.0",
"date-fns": "^2.30.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.11"
}
}