-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.9 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
{
"private": true,
"name": "@kassandra/core",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"description": "Kassandra Core Contracts and ABI",
"scripts": {
"compile": "truffle compile",
"testrpc": "ganache-cli --deterministic --defaultBalanceEther 500 --gasLimit 100000000",
"test": "truffle test",
"test:verbose": "VERBOSE=true truffle test",
"coverage": "truffle run coverage --network development",
"lint": "eslint .",
"lint:contracts": "solhint contracts/**/*.sol",
"lint:libraries": "solhint libraries/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KassandraFinance/kassandra-core.git"
},
"bugs": {
"url": "https://github.com/KassandraFinance/kassandra-core/issues"
},
"homepage": "https://github.com/KassandraFinance/kassandra-core#readme",
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.5",
"chai": "^4.3.6",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"fast-check": "^2.17.0",
"ganache-core": "^2.6.1",
"mocha": "^8.4.0",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.16",
"truffle-assertions": "^0.9.1",
"web3": "^1.2.0"
},
"dependencies": {
"@api3/airnode-protocol": "^0.3.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.2.0",
"@truffle/hdwallet-provider": "^1.0.43",
"decimal.js": "^10.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"ganache-cli": "^6.7.0",
"hardhat": "^2.9.3",
"truffle": "^5.0.41",
"truffle-plugin-verify": "^0.5.8"
}
}