-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
100 lines (100 loc) · 3.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@primitivefi/contracts",
"version": "0.4.4",
"description": "Primitive options protocol contracts.",
"engines": {
"node": ">=10"
},
"files": [
"artifacts",
"contracts",
"deployments"
],
"scripts": {
"task:remove-build": "rimraf build",
"task:remove-lock": "rimraf yarn.lock",
"task:remove-modules": "rimraf node_modules",
"task:install": "yarn",
"clean-install": "npm-run-all task:remove-build task:remove-lock task:remove-modules task:install",
"task:clean": "hardhat clean",
"task:compile": "hardhat compile",
"compile": "npm-run-all task:clean task:compile",
"coverage": "hardhat clean && hardhat compile && hardhat coverage --network coverage",
"lint": "cross-env hardhat check",
"lint:fix": "solium -d contracts --fix",
"bevm": "hardhat node",
"test": "cross-env hardhat test",
"test:periphery": "cross-env hardhat test ./test/test_trader.spec.js",
"test:local": "cross-env hardhat test --network local",
"deploy:local": "cross-env hardhat deploy --network local",
"deploy:rinkeby": "cross-env hardhat deploy --network rinkeby",
"deploy:kovan": "cross-env hardhat deploy --network kovan",
"deploy-periphery:rinkeby": "cross-env hardhat deploy --network rinkeby --tags Periphery",
"deploy-core:rinkeby": "cross-env hardhat deploy --network rinkeby --tags Core",
"deploy-periphery:kovan": "cross-env hardhat deploy --network kovan --tags Periphery",
"deploy-core:kovan": "cross-env hardhat deploy --network kovan --tags Core",
"deploy:mainnet": "cross-env hardhat deploy --network live --tags Core Periphery",
"deploy-periphery:mainnet": "cross-env hardhat deploy --network live --tags Periphery",
"deploy-core:mainnet": "cross-env hardhat deploy --network live --tags Core",
"deploy-options:rinkeby": "cross-env hardhat run ./scripts/deploy_rinkeby_options.js --network rinkeby",
"deploy-options:mainnet": "cross-env hardhat run ./scripts/deploy_mainnet_options.js --network live",
"deploy-pairs:mainnet": "cross-env hardhat run ./scripts/deploy_mainnet_pairs.js --network live",
"verify:rinkeby": "cross-env hardhat run ./scripts/verify.js --network rinkeby",
"verify:kovan": "cross-env hardhat run ./scripts/verify.js --network kovan",
"verify:mainnet": "cross-env hardhat run ./scripts/verify.js --network live"
},
"repository": {
"type": "git",
"url": "git+https://github.com/primitivefinance/primitive-contracts.git"
},
"keywords": [
"defi",
"ethereum",
"primitive",
"solidity",
"options"
],
"author": "Primitive",
"license": "MIT",
"bugs": {
"url": "https://github.com/primitivefinance/primitive-contracts/issues"
},
"homepage": "https://primitive.finance",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@truffle/hdwallet-provider": "^1.0.35",
"bip39": "^3.0.2",
"bn.js": "^5.1.1",
"canonical-weth": "^1.4.0",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.0.1",
"ethers": "^5.0.4",
"hardhat": "^2.0.4",
"hardhat-deploy": "^0.7.0-beta.35",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-spdx-license-identifier": "^2.0.2",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"rimraf": "^3.0.2",
"solc": "^0.6.8",
"solidity-coverage": "^0.7.9",
"web3": "^1.2.7"
},
"dependencies": {
"@openzeppelin/contracts": "3.0.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"publishConfig": {
"access": "public"
},
"gitHead": "c50308617c3c6ecb51b45527c55c4c7045daa2fc"
}