-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 865 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
{
"name": "web3",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "run-p -ln front back",
"front": "cd front && npm run dev",
"back": "cd back && npx hardhat node",
"test": "cd back && npx hardhat test",
"local": "cd back && npx hardhat run scripts/local.js --network local",
"deploy": "cd back && npx hardhat test && npx hardhat run scripts/deploy.js --network local",
"deploy:bsc": "cd back && npx hardhat test && npx hardhat run scripts/deploy.js --network testnet",
"compile": "cd back && npx hardhat clean && npx hardhat compile",
"verify": "cd back && npx hardhat verify --network testnet 0x6e797D660E822A708293617666561E881bBd00c1"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}