-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.2 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
{
"name": "dragonswap-farming",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "npx hardhat test --network hardhat",
"test:factory": "npx hardhat test --network hardhat test/DragonswapStakerFactory.test.js",
"test:staker": "npx hardhat test --network hardhat test/DragonswapStaker.test.js",
"test:stakerBoosted": "npx hardhat test --network hardhat test/DragonswapStakerBoosted.test.js",
"coverage": "npx hardhat coverage --network hardhat --testfiles test/",
"format": "prettier --write 'contracts/**/*.sol' './**/*.js'",
"lint": "solhint 'contracts/**/*.sol'",
"compile": "npx hardhat compile",
"size": "npx hardhat size-contracts",
"node": "npx hardhat node",
"node-mainnet": "npx hardhat node --fork",
"node-testnet": "npx hardhat node --fork https://evm-devnet.seinetwork.io",
"clean": "rimraf ./cache ./artifacts ./node_modules",
"postinstall": "yarn husky install && cp ./gitmojis.json ./node_modules/commitlint-plugin-gitmoji/lib/gitmojis.json",
"hook:prepare-commit-msg": "node githooks/prepare-commit-msg.js"
},
"keywords": [],
"author": "nima-enterprises",
"license": "ISC",
"dependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitlint-config-gitmoji": "^2.2.5",
"commitlint-plugin-gitmoji": "^2.2.0",
"dotenv": "16.4.1",
"hardhat-contract-sizer": "2.10.0",
"hardhat-gas-reporter": "1.0.9",
"hardhat-web3": "1.0.1",
"husky": "^8.0.1",
"pre-commit": "^1.2.2",
"scrypt": "github:barrysteyn/node-scrypt#fb60a8d3c158fe115a624b5ffa7480f3a24b03fb",
"solhint": "4.1.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-waffle": "2.0.5",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "3.0.2",
"chai": "4.4.1",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "4.0.10",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.4.0",
"git-branch": "2.0.1",
"hardhat": "^2.12.7",
"prettier": "3.2.4",
"prettier-plugin-solidity": "1.3.1",
"solidity-coverage": "0.8.5"
},
"engines": {
"node": ">=20.11"
}
}