-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 3.32 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
{
"name": "amplifrens",
"version": "1.0.0",
"description": "Stay up to date with latest crypto news, make frens, and earn special perks by contributing.",
"main": "index.js",
"repository": "[email protected]:lakchote/amplifrens.git",
"author": "Lucien Akchoté <[email protected]>",
"license": "GPL-3.0-only",
"scripts": {
"compile": "SKIP_LOAD=true hardhat clean && SKIP_LOAD=true hardhat compile",
"test": "SKIP_LOAD=true hardhat test",
"clean": "hardhat clean",
"coverage": "yarn compile && hardhat coverage",
"lint": "solhint contracts/**/*.sol",
"hardhat": "hardhat",
"full-deploy-mumbai-ipfs": "hardhat full-deploy --ipfs --network mumbai",
"full-deploy-mumbai": "hardhat full-deploy --network mumbai",
"full-deploy-matic-ipfs": "hardhat full-deploy --ipfs --network matic",
"full-deploy-matic": "hardhat full-deploy --network matic",
"full-deploy-local": "hardhat full-deploy --network localhost",
"graph-codegen": "cd ./subgraph && graph codegen",
"graph-build": "cd ./subgraph && graph build",
"graph-test": "graph test",
"graph-local-clean": "docker-compose down -v && docker-compose rm -v && rm -rf data/ipfs data/postgres",
"graph-local-deploy": "yarn full-deploy-local && yarn create-local && yarn deploy-local && yarn graph-fixtures",
"graph-fixtures": "hardhat fixtures-full --network localhost",
"graph-generate": "hardhat graph-generate --network localhost",
"hardhat-local": "hardhat node --hostname 0.0.0.0",
"graph-local": "docker-compose up",
"create-local": "graph create --node http://127.0.0.1:8020 amplifrens",
"deploy-local": "cd ./subgraph && graph deploy --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020 amplifrens",
"increase-time": "yarn hardhat increase-time --network localhost",
"perform-upkeep": "yarn hardhat perform-upkeep --network localhost"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@graphprotocol/graph-cli": "^0.34.0",
"@graphprotocol/graph-ts": "^0.28.0",
"@graphprotocol/hardhat-graph": "https://github.com/graphprotocol/hardhat-graph",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@pinata/sdk": "^1.1.26",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.3",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.13",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"ethers": "^5.7.0",
"fs-extra": "^10.1.0",
"hardhat": "^2.10.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"pretty-quick": "^3.1.3",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3"
}
}