-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
87 lines (87 loc) · 3.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@daostack/migration",
"version": "0.0.1-rc.57-v0",
"description": "A repo for handling DAOstack contract migrations",
"main": "index.js",
"bin": {
"daostack-migrate": "migrate.js"
},
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"generate-abis": "node ./generate-abis.js",
"optimize-abis": "node ./optimize-abis.js init && node ./optimize-abis.js no-duplicates",
"optimize-abis:no-bytecode": "node ./optimize-abis.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"cleandb": "rimraf db",
"ganache": "mkdirp db && ganache-cli --db=./db -l 8000000 --networkId 1512051714758 --deterministic --hostname=0.0.0.0",
"migrate": "node ./migrate.js",
"migrate.base": "node ./migrate.js base",
"migrate.dao": "node ./migrate.js dao",
"migrate.demo": "node ./migrate.js demo",
"migrate.update-registry": "node ./migrate.js update-registry",
"migrate.allocate-reputation": "node ./migrate.js allocate-reputation",
"docker:build": "docker build . -t daostack/migration:$(cat package.json | jq -r '.version')",
"docker:push": "docker push daostack/migration:$(cat package.json | jq -r '.version')",
"prepare-release": "./prepare-release.sh",
"release": "./release.sh",
"prune-arc-build": "node ./pruneArcBuild.js",
"postinstall": "npm run prune-arc-build && npm run generate-abis",
"verify.initialize": "npm explore @daostack/arc -- npm install openzeppelin-solidity @daostack/infra --no-save && npm explore @daostack/infra -- npm install openzeppelin-solidity --no-save && npm explore @daostack/arc-hive -- npm install openzeppelin-solidity --no-save",
"verify.build": "node node_modules/typescript/bin/tsc verify.ts -sourceMap",
"verify.help": "node verify.js -h",
"verify.lint": "tslint -c tslint.json verify.ts",
"verify.lint.andFix": "npm run verify.lint -- --fix",
"verify": "node verify.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daostack/migration.git"
},
"author": "DAOstack (https://www.daostack.io)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daostack/migration/issues"
},
"homepage": "https://github.com/daostack/migration#readme",
"dependencies": {
"@daostack/arc": "0.0.1-rc.57",
"@daostack/arc-hive": "0.0.1-rc.4",
"ethereumjs-wallet": "^0.6.3",
"fstream": "^1.0.12",
"ganache-cli": "6.9.0",
"hdwallet-accounts": "0.0.1",
"inquirer": "^6.2.2",
"jsonschema": "^1.2.4",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"ora": "^3.2.0",
"prompt-confirm": "^2.0.4",
"rimraf": "^2.6.3",
"tar": "^4.4.8",
"web3": "1.2.6",
"web3-utils": "^1.3.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"axios": "^0.18.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"dotenv": "^7.0.0",
"es6-promisify": "^6.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-abi": "^0.6.7",
"glob": "^7.1.3",
"querystring": "^0.2.0",
"truffle-flattener": "^1.3.0",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
}
}