-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "splitbill-mini",
"version": "1.0.0",
"description": "SplitBill Mini Demo for RSK Dev Course",
"main": "index.js",
"scripts": {
"deploy": "npx hardhat run scripts/deploy.js --network rskTestnet",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"node": "npx hardhat node",
"frontend": "cd frontend && npm start",
"install-all": "npm install && cd frontend && npm install"
},
"keywords": [
"rsk",
"blockchain",
"defi",
"splitbill"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^7.0.0"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.6",
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.1",
"ethers": "^5.8.0",
"hardhat": "^3.2.0"
},
"type": "module"
}