-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.89 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.89 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dos",
"private": true,
"license": "BUSL-1.1",
"scripts": {
"clean": "rm -rf artifacts cache typechain-types",
"node": "yarn hardhat node",
"compile": "yarn hardhat compile",
"typechain": "yarn hardhat typechain",
"test": "yarn hardhat test",
"test:forge": "forge test",
"test:withTypesCheck": "yarn tsc --noEmit && yarn hardhat test",
"pairHashCode": "forge script script/PairHashCode.s.sol:PairHashCodeScript",
"start": "yarn run pm2 start 'npx hardhat node' --name localhostNode",
"setupLocalhost": "yarn run hardhat run scripts/setupLocalhost.ts --network localhost",
"stop": "yarn run pm2 delete all",
"coverage": "yarn hardhat coverage",
"lint": "yarn lint:typeScript && yarn lint:solidity",
"lint:typeScript": "yarn eslint ./lib ./scripts ./test --ext .ts",
"lint:solidity": "yarn solhint contracts/**/*.sol",
"prettier": "prettier *.md \"{docs,.github}/**/*.{md,yml}\" \"scripts/**/*.ts\"",
"prettier:check": "prettier --check \"contracts/**/*.sol\" \"lib/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\" \"./*.ts\" \"./*.json\"",
"format": "prettier --write \"contracts/**/*.sol\" \"lib/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\" \"./*.ts\" \"./*.json\" \"./deployment/*.json\"",
"check_dot_only": "yarn run dot-only-hunter test",
"graph-codegen": "cd ./subgraph && graph codegen",
"graph-build": "cd ./subgraph && graph build",
"graph-test": "graph test",
"graph-local": "docker-compose up",
"graph-local-clean": "docker-compose down -v && docker-compose rm -v && rm -rf data/ipfs data/postgres",
"graph-local-clean-stop": "docker-compose down -v && docker-compose rm -v && rm -rf data/ipfs data/postgres yarn run stop yarn run clean-workspace",
"create-local": "graph create --node http://127.0.0.1:8020 DOS",
"deploy-local": "cd ./subgraph && graph deploy --ipfs http://127.0.0.1:5001 --node http://127.0.0.1:8020 DOS",
"clean-workspace": "yarn run hardhat run scripts/resetEtheralWorkspace.ts --network localhost",
"prepare": "husky install"
},
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@ethersproject/abi": "^5.4.7",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@openzeppelin/contracts": "^4.8.2",
"@tenderly/hardhat-tenderly": "^1.6.1",
"@trezor/connect": "^9.0.4",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"ethers": "^5.7.2",
"husky": "^8.0.3"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.37.1",
"@graphprotocol/graph-ts": "^0.29.0",
"@graphprotocol/hardhat-graph": "^0.1.0-alpha.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.16",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"bip39": "^3.0.4",
"chai": "^4.3.7",
"dot-only-hunter": "^1.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-filename-rules": "^1.3.0",
"eslint-plugin-import": "^2.26.0",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.12.7",
"hardhat-ethernal": "^3.1.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"merkle-patricia-tree": "^4.2.4",
"pm2": "^5.2.2",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
}
}