-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.37 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
{
"name": "pollen-dao",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "All Contributors (see AUTHORS.md)",
"main": "truffle-config.js",
"repository": "[email protected]:audacity-dao/investment-fund-dao.git",
"devDependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/test-helpers": "^0.5.4",
"@truffle/hdwallet-provider": "^1.0.32",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ganache-cli": "^6.8.2",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"truffle": "^5.1.10",
"truffle-flattener": "^1.5.0",
"winston": "^3.3.3"
},
"scripts": {
"compile": "truffle compile",
"test": "./scripts/test.sh",
"test:ci": "./scripts/clean.sh --all && truffle compile && ./scripts/test.sh",
"interact": "oz call",
"start:pln-chain": "./scripts/start-pln-chain.sh --no-migrate",
"migrate:pln-chain": "./scripts/start-pln-chain.sh",
"migrate:ropsten": "truffle migrate --network ropsten",
"console:ropsten": "truffle console --network ropsten",
"migrate:mainnet": "truffle migrate --network mainnet",
"console:mainnet": "truffle console --network mainnet",
"flatten": "./scripts/flatten.sh",
"clean": "./scripts/clean.sh"
}
}