-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@web3mason/w3m-presale-contracts",
"version": "1.0.0",
"description": "Web3Mason (W3M) Token Presale Smart Contracts",
"private": true,
"license": "MIT",
"author": {
"name": "Web3Mason.io",
"email": "[email protected]",
"url": "https://web3mason.io/"
},
"homepage": "https://github.com/web3mason/w3m-presale-contracts#readme",
"repository": {
"type": "git",
"url": "https://github.com/web3mason/w3m-presale-contracts.git"
},
"bugs": {
"url": "https://github.com/web3mason/w3m-presale-contracts/issues",
"email": "[email protected]"
},
"scripts": {
"clean": "rimraf ./build/ && mkdirp ./build/ && rimraf ./flatten/ && mkdirp ./flatten/",
"precompile": "yarn clean",
"compile": "truffle compile",
"postcompile": "yarn run flatten",
"predeploy-": "yarn run compile",
"deploy": "truffle migrate --network",
"verify": "truffle run verify --network",
"test": "truffle test",
"flatten": "waffle flatten"
},
"files": [
"contracts",
"build"
],
"dependencies": {
"@openzeppelin/contracts": "4.9.2"
},
"devDependencies": {
"@truffle/hdwallet-provider": "2.1.12",
"dotenv": "16.3.1",
"ethereum-waffle": "4.0.10",
"ethers": "^6.7.1",
"mkdirp": "3.0.1",
"rimraf": "5.0.1",
"truffle": "5.10.1",
"truffle-plugin-verify": "0.6.4"
}
}