forked from aragon/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "deployments",
"description": "Aragon deployments",
"version": "0.0.1",
"private": true,
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/aragon/deployments.git"
},
"bugs": {
"url": "https://github.com/aragon/deployments/issues"
},
"homepage": "https://github.com/aragon/deployments#readme",
"author": "Aragon Association <legal@aragon.org>",
"dependencies": {
"@aragon/apm": "^2.0.2",
"dot-prop": "^4.2.0",
"dotenv": "^6.1.0",
"execa": "^1.0.0",
"express": "^4.16.4",
"forever": "^0.15.3",
"github-webhook-handler": "^0.7.1",
"ipfs-api": "^25.0.0",
"js-yaml": "^3.12.0",
"mkdirp": "^0.5.1",
"recursive-readdir": "^2.2.2",
"targz": "^1.0.1",
"web3": "1.0.0-beta.34",
"yargs": "^11.1.0"
},
"scripts": {
"start": "forever server/index.js",
"decompress": "scripts/decompress",
"decompress:strict": "STRICT=true npm run decompress",
"pin": "scripts/pin",
"docker:build": "docker build --no-cache -t aragon/deployments .",
"docker:start": "docker run -p 2345:8080 -ti aragon/deployments"
},
"devDependencies": {
"husky": "^1.1.2"
},
"husky": {
"hooks": {
"pre-push": "npm run decompress:strict"
}
}
}