-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 875 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
{
"name": "@dirtycajunrice/hardhat-template",
"version": "1.0.0",
"description": "Contract repository for %%PROJECT_NAME%%",
"author": "DirtyCajunRice",
"license": "GPL-V3",
"type": "module",
"repository": "dirtycajunrice/hardhat-template",
"dependencies": {
"ts-node": "10.9.1",
"typescript": "4.9.3"
},
"devDependencies": {
"@dirtycajunrice/contracts": "^0.10.0",
"@dirtycajunrice/hardhat-tasks": "^1.3.0"
},
"scripts": {
"initialize": "npx tsx ./scripts/initialize.ts",
"-------BASE--------": "",
"compile": "npx hardhat compile",
"------DEPLOY------": "",
"deploy:ethereum": "npx hardhat --network ethereum deploy",
"-----UPGRADE-----": "",
"upgrade:ethereum": "npx hardhat --network ethereum upgrade",
"-------VERIFY------": "",
"verify:ethereum": "npx hardhat --network ethereum verify"
}
}