-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.24 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
75
76
77
78
{
"name": "@passive-income/launchpad-contracts",
"version": "1.0.2",
"description": "Smart contracts for the PSI Launchpad",
"engines": {
"node": ">=10"
},
"homepage": "https://passive-income.io",
"repository": {
"type": "git",
"url": "https://github.com/PSI-Passive-Income/Launchpad-contracts.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"files": [
"abi",
"artifacts",
"contracts",
"typechain"
],
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2",
"@openzeppelin/test-helpers": "^0.5.12",
"@passive-income/dpex-peripheral": "1.1.9",
"@passive-income/psi-contracts": "~1.0.10",
"@types/lodash": "^4.14.175",
"dotenv": "^8.2.0",
"solidity-coverage": "^0.7.16",
"lodash": "^4.17.21"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.11.0",
"@openzeppelin/truffle-upgrades": "^1.4.0",
"@typechain/hardhat": "^3.0.0",
"@typechain/ethers-v5": "^8.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"axios": "^0.21.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.1.1",
"ethers": "^5.5.1",
"hardhat": "^2.6.7",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-tracer": "^1.0.0-alpha.6",
"mocha": "^8.2.1",
"ncp": "^2.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"solc": "^0.8.9",
"ts-node": "^9.1.1",
"typechain": "^6.0.2",
"typescript": "^4.1.3"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./abi/ && rimraf ./artifacts/ && rimraf ./cache/ && rimraf ./typechain/",
"precompile": "yarn clean",
"compile": "hardhat compile",
"pretest": "yarn compile",
"test": "hardhat test",
"prepublishOnly": "yarn test"
},
"resolutions": {
"solc": "0.8.6"
},
"license": "GPL-3.0-or-later"
}