forked from pancakeswap/pancake-lottery-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "pancake-lottery-scheduler",
"version": "1.0.0",
"private": true,
"scripts": {
"execute:start:testnet": "npx hardhat run --network testnet scripts/start-lottery.ts",
"execute:start:mainnet": "npx hardhat run --network mainnet scripts/start-lottery.ts",
"execute:close:testnet": "npx hardhat run --network testnet scripts/close-lottery.ts",
"execute:close:mainnet": "npx hardhat run --network mainnet scripts/close-lottery.ts",
"execute:draw:testnet": "npx hardhat run --network testnet scripts/draw-lottery.ts",
"execute:draw:mainnet": "npx hardhat run --network mainnet scripts/draw-lottery.ts",
"start": "node cron.js",
"format:check": "prettier --check '*/**/*.{js,ts}'",
"format:write": "prettier --write '*/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts}'",
"prepare": "husky install"
},
"dependencies": {
"@chainlink/contracts": "^0.2.0",
"axios": "^0.24.0",
"bignumber.js": "^9.0.0",
"child_process": "^1.0.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"moment": "^2.29.0",
"node-cron": "^3.0.0",
"winston": "^3.3.0",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"ethers": "^5.4.0",
"hardhat": "^2.5.0",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}