-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.7 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
{
"name": "nectardao",
"version": "1.0.0",
"description": "nectar dao deployment repo",
"main": "index.js",
"scripts": {
"migrate_prod": "npm run prepare_prod && daostack-migrate dao --prev-migration node_modules/@daostack/migration/migration.json --gasPrice 25 --params ./params.json --custom-abis-location ./custom-abis --arc-version 0.0.1-rc.34",
"prepare_test": "node ./prepare.js ./parameters/deployment.json ./parameters/mainnet_params_25_11.json",
"migrate_test": "npm run prepare_test && daostack-migrate dao --prev-migration node_modules/@daostack/migration/migration.json --gasPrice 20 --params ./params.json --custom-abis-location ./custom-abis --arc-version 0.0.1-rc.34",
"redeem": "node -e 'require(\"./scripts/nectarRedeem.js\").startRedeem()'",
"redeemLog": "node -e 'require(\"./scripts/nectarRedeemLogs.js\").startRedeem()'",
"test": "jest",
"build": "truffle compile",
"audit": "node -e 'require(\"./audit.js\").startAudit()'",
"prepare_prod": "node ./prepare.js ./parameters/deployment_prod.json ./parameters/production_mainnet_params.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daostack/nectardao.git"
},
"keywords": [
"nectar",
"dao",
"daostack"
],
"author": "daostack.io",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daostack/nectardao/issues"
},
"homepage": "https://github.com/daostack/nectardao#readme",
"dependencies": {
"@daostack/migration": "0.0.1-rc.34-v0",
"bs58": "^4.0.1",
"dotenv": "^8.2.0",
"ganache-cli": "^6.7.0",
"truffle": "^5.1.2",
"unix-timestamp": "^0.2.0",
"web3": "1.0.0-beta.55"
},
"devDependencies": {
"jest": "^24.9.0"
}
}