-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 899 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
29
30
31
32
33
{
"name": "bsc-starter-box",
"version": "1.0.0",
"description": "A sample Truffle project that allows developers to deploy to the BNB Smart Chain",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"test:bsc": "truffle test --config=truffle-config.bsc.js --network ",
"compile:bsc": "truffle compile --config=truffle-config.bsc.js",
"migrate:bsc": "truffle migrate --config=truffle-config.bsc.js --network "
},
"repository": {},
"keywords": [
"BSC",
"BNB Smart Chain",
"BNB Chain"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@truffle/hdwallet-provider": "^1.4.2",
"dotenv": "^9.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/test-helpers": "^0.5.16"
}
}