forked from aragon/aragen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.84 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.84 KB
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
{
"name": "@aragon/aragen",
"version": "5.4.3",
"description": "Generate Aragon local dev environment snapshots",
"main": "index.js",
"bin": {
"aragen": "./src/cli.js"
},
"scripts": {
"prepare": "npm run gen",
"prepublishOnly": "npm run build",
"build": "webpack-cli --config ./src/webpack/webpack.node.config.js",
"start": "npm run start-ganache-bg && npm run deploy",
"start:local": "npm run start-ganache-bg && npm run link-repos && npm run deploy",
"link-repos": "scripts/link-repos",
"deploy-base": "scripts/deploy-base",
"deploy": "npm run deploy-base && npm run publish-client && npm run publish-core-apps && npm run publish-dao-templates && npm run publish-fundraising && npm run publish-open-enterprise",
"start-ganache": "scripts/start-ganache",
"start-ganache-bg": "scripts/start-ganache-bg",
"gen": "npm run get-client && npm run get-core-apps && npm run get-dao-templates && npm run get-fundraising && npm run get-open-enterprise",
"get-client": "scripts/get-repos/client",
"get-core-apps": "scripts/get-repos/core-apps",
"get-dao-templates": "scripts/get-repos/dao-templates",
"get-fundraising": "scripts/get-repos/fundraising",
"get-open-enterprise": "scripts/get-repos/open-enterprise",
"publish-client": "scripts/publish/client",
"publish-core-apps": "scripts/publish/core-apps",
"publish-dao-templates": "scripts/publish/dao-templates",
"publish-fundraising": "scripts/publish/fundraising",
"publish-open-enterprise": "scripts/publish/open-enterprise"
},
"files": [
"index.js",
"aragon-ganache",
"ipfs-cache",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/aragon/aragen.git"
},
"author": "Aragon Association <legal@aragon.org>",
"contributors": [
"Jorge Izquierdo <jorge@aragon.one>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/aragon/aragen/issues"
},
"homepage": "https://github.com/aragon/aragen#readme",
"dependencies": {
"@aragon/cli-utils": "^0.0.8",
"@babel/polyfill": "^7.0.0",
"chalk": "^2.1.0",
"ethers": "^4.0.0",
"execa": "^2.0.3",
"find-process": "^1.4.2",
"listr": "^0.14.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.2",
"web3": "^1.2.4",
"yargs": "^13.2.4"
},
"devDependencies": {
"@aragon/cli": "^7.0.0",
"@aragon/id": "^2.0.0",
"@aragon/os": "^4.2.0",
"@aragon/apps-shared-minime": "^1.0.0",
"eth-ens-namehash": "^2.0.8",
"ganache-cli": "^6.7.0",
"ganache-core": "^2.8.0",
"js-scrypt": "0.2.0",
"node-loader": "^0.6.0",
"on-build-webpack": "^0.1.0",
"prepend-file": "^1.3.1",
"scrypt": "6.0.3",
"shebang-loader": "0.0.1",
"truffle": "4.1.14",
"webpack": "^4.18.0",
"webpack-cli": "3.1.0"
},
"publishConfig": {
"access": "public"
}
}