-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.78 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
{
"name": "@blossom-labs/apps-superfluid",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/BlossomLabs/superfluid-aragon-app.git"
},
"author": "Blossom Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlossomLabs/superfluid-aragon-app/issues"
},
"homepage": "https://github.com/BlossomLabs/superfluid-aragon-app#readme",
"files": [
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/**/*.dbg.json",
"/contracts",
"/test"
],
"scripts": {
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"chain": "hardhat node",
"fork": "hardhat node --fork https://rpc.ankr.com/eth_goerli",
"lint": "yarn lint:sol",
"lint:fix": "yarn lint:sol:fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"coverage": "hardhat coverage",
"publish:major": "hardhat publish major",
"publish:minor": "hardhat publish minor",
"publish:patch": "hardhat publish patch",
"start": "buidler start"
},
"dependencies": {
"@aragon/apps-agent": "^2.0.0-rc.1",
"@aragon/os": "4.4.0"
},
"devDependencies": {
"@1hive/hardhat-aragon": "^0.1.4",
"@aragon/buidler-aragon": "^0.2.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomiclabs/buidler": "^1.3.0",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-truffle5": "^1.3.0",
"@nomiclabs/buidler-web3": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@superfluid-finance/ethereum-contracts": "^1.0.0-rc.8",
"@superfluid-finance/js-sdk": "^0.5.8",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"dotenv": "^9.0.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.17.4",
"hardhat-deploy": "^0.11.37",
"lodash.isequal": "^4.5.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.2",
"typescript": "^4.4.4",
"web3": "^1.2.0"
}
}