-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 KB
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
{
"name": "position-protocol",
"description": "Core position exchange protocol",
"license": "agpl-3.0",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"homepage": "https://position.exchange/",
"keywords": [
"position",
"position-exchange",
"POSI"
],
"repository": {
"type": "git",
"url": "https://github.com/PositionExchange/position-protocol"
},
"devDependencies": {
"@endemolshinegroup/git-author-check": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@positionlab/hardhat-etherscan": "^0.1.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@typechain/truffle-v5": "^5.0.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/nedb": "^1.8.12",
"@types/node": "^15.12.4",
"@types/shelljs": "^0.8.9",
"chai": "^4.3.4",
"decimal.js": "^3.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.8",
"hardhat-deploy": "^0.8.9",
"husky": "^7.0.1",
"mocha": "^9.0.1",
"prb-math": "^2.2.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"typechain": "^5.1.2",
"typescript": "^4.3.4"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@nomiclabs/buidler": "^1.4.8",
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/hardhat-defender": "^1.7.0",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@positionlab/hardhat-etherscan": "^0.1.1",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.8",
"mocha-chai-jest-snapshot": "^1.1.2",
"nedb": "^1.8.0",
"nedb-promises": "^5.0.1",
"semaphore": "^1.1.0",
"solidity-coverage": "^0.7.20"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy_testnet": "npx hardhat --network bsc_testnet deploy --stage test",
"deploy_production": "yarn compile && npx hardhat --network bsc_mainnet deploy --stage production",
"check-sizes": "npx hardhat compile && yarn hardhat size-contracts",
"prettier": "prettier --write 'contracts/**/*.sol'"
}
}