forked from aragon/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"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": {
"dot-prop": "^5.2.0",
"dotenv": "^6.1.0",
"ethers": "^5.4.7",
"execa": "^1.0.0",
"express": "^4.16.4",
"forever": "^0.15.3",
"github-webhook-handler": "^0.7.1",
"ipfs-api": "^25.0.0",
"ipfs-http-client": "^53.0.0",
"js-yaml": "^3.12.0",
"mkdirp": "^0.5.1",
"recursive-readdir": "^2.2.2",
"targz": "^1.0.1",
"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",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-push": "npm run decompress:strict",
"pre-commit": "pretty-quick --staged --pattern \"environments/**/*.yml\""
}
}
}