-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
{
"name": "smart-contracts",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "truffle test",
"lint": "solhint 'contracts/**/*.sol'",
"build": "truffle compile",
"migration": "truffle migration",
"coverage": "node --max-old-space-size=4096 ./node_modules/.bin/truffle run coverage",
"deploy:rinkeby": "truffle deploy --network rinkeby --reset",
"deploy:testnet": "truffle deploy --network testnet --reset",
"deploy:mumbai": "truffle deploy --network mumbai --reset",
"deploy:eth": "truffle deploy --network eth --reset",
"deploy:bsc": "truffle deploy --network bsc --reset",
"deploy:polygon": "truffle deploy --network polygon --reset"
},
"author": "",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^2.0.8",
"solhint": "^3.3.7",
"solidity-coverage": "0.8.0-beta.1",
"truffle": "^5.4.33",
"truffle-plugin-verify": "^0.5.25"
}
}