-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 3.27 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bitmarkets",
"version": "0.9.5",
"license": "Apache-2.0",
"description": "Crypto made simple",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^10.0.0",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^5.0.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"ethers": "^6.8.0",
"hardhat": "^2.18.2",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.0.4"
},
"scripts": {
"prelint": "eslint test/**/*.test.ts test/*.test.ts",
"lint": "solhint -f table contracts/*.sol contracts/**/*.sol",
"lint:fix": "prettier --write contracts/*.sol contracts/**/*.sol tasks/**/*.ts test/**/*.ts test/*.ts",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy:dev": "cross-env NODE_ENV=development npx hardhat deploy --network localhost",
"deploy:test": "cross-env NODE_ENV=testing npx hardhat deploy --network polygon_mumbai",
"deploy:prod": "cross-env NODE_ENV=production npx hardhat deploy --network matic",
"deployPreSale:dev": "cross-env NODE_ENV=development npx hardhat deployPreSale --network localhost",
"deployPreSale:test": "cross-env NODE_ENV=testing npx hardhat deployPreSale --network polygon_mumbai",
"deployPreSale:prod": "cross-env NODE_ENV=production npx hardhat deployPreSale --network matic",
"deployPublicSale:dev": "cross-env NODE_ENV=development npx hardhat deployPublicSale --network localhost",
"deployPublicSale:test": "cross-env NODE_ENV=testing npx hardhat deployPublicSale --network polygon_mumbai",
"deployPublicSale:prod": "cross-env NODE_ENV=production npx hardhat deployPublicSale --network matic",
"allocate:test": "cross-env NODE_ENV=testing npx hardhat allocate --network polygon_mumbai",
"allocate:prod": "cross-env NODE_ENV=production npx hardhat allocate --network matic",
"start": "cross-env NODE_ENV=development npx hardhat node",
"generateAddresses": "node scripts/generateWallets.mjs",
"combineKeys": "node scripts/combineKeys.mjs",
"splitWallets": "node scripts/splitWallets.mjs",
"generateAllocationsWallets": "node scripts/generateAllocationsWallets.mjs",
"purchases": "node scripts/purchasesFixer.mjs"
},
"dependencies": {
"@deliberative/crypto": "^1.0.3"
},
"engines": {
"node": ">=10.6.0"
}
}