-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@alpsfinance/core",
"version": "0.0.4",
"description": "This is the official Alps Finance smart contract repository.",
"license": "AGPL-3.0-only",
"keywords": [
"alps",
"finance",
"defi",
"web3",
"ethereum",
"bsc",
"polygon",
"avalanche",
"fantom",
"moralis",
"truffle",
"smart contracts",
"solidity",
"airdrop",
"presale",
"erc20",
"erc721",
"erc1155"
],
"homepage": "https://github.com/AlpsFinance/alpsfinance-smart-contracts",
"dependencies": {
"@chainlink/contracts": "^0.3.0",
"base64-sol": "^1.1.0",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"bignumber.js": "^7.2.1",
"ethers": "^5.5.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"truffle-assertions": "^0.9.2"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^2.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"dotenv": "^10.0.0",
"truffle-plugin-verify": "^0.5.20",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"husky": "^7.0.0"
},
"scripts": {
"compile": "truffle compile --all",
"migrate": "truffle migrate",
"console": "truffle console",
"develop": "truffle develop",
"test": "truffle test",
"verify": "truffle run verify",
"airdrop": "node airdrop/app.js",
"solhint": "npx solhint contracts/**/*.sol",
"prettier:solidity": "npx prettier --write contracts/**/*.sol",
"prepare": "husky install"
}
}