-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1006 Bytes
/
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
{
"name": "leap-peeper",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"dependencies": {
"ethers": "^4.0.23",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"serverless": "^1.33.1",
"serverless-offline": "^4.2.1"
},
"scripts": {
"start": "serverless offline start -s dev",
"deploy:testnet": "NODE_URL=https://testnet-node1.leapdao.org/ SLACK_CHANNEL='#testnet' SAFE_PERIOD_TIME=3900 SAFE_BLOCK_TIME=180 sls deploy -s testnet",
"deploy:mainnet": "NODE_URL=https://mainnet-node1.leapdao.org/ SLACK_CHANNEL='#mainnet' SAFE_PERIOD_TIME=2700 SAFE_BLOCK_TIME=600 VAL_BALANCE_THRESHOLD=100000000000000000 sls deploy -s mainnet"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"author": "Kosta Korenkov <[email protected]>",
"license": "MPL-2.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}