-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.19 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
{
"name": "@f8n/fnd-protocol-examples",
"description": "Examples building with the Foundation smart contracts",
"version": "0.0.1",
"scripts": {
"build": "hardhat typechain",
"lint": "yarn prettier && yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint --config ./.solhint.json --fix \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --fix --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write --list-different \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test",
"test-mainnet-fork": "hardhat --config hardhat.test-mainnet-fork.config.ts test",
"run-script": "hardhat run",
"size-contracts": "hardhat size-contracts"
},
"devDependencies": {
"@f8n/fnd-protocol": "2.3.0",
"@manifoldxyz/royalty-registry-solidity": "1.0.9",
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "1.17.0",
"@primitivefi/hardhat-dodoc": "0.2.3",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "5.0.0",
"@types/chai": "4.3.3",
"@types/mocha": "10.0.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"chai": "4.3.6",
"dotenv": "16.0.3",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-no-only-tests": "3.0.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.1",
"graphql": "16.6.0",
"graphql-request": "5.0.0",
"graphql-tag": "2.12.6",
"hardhat": "2.11.2",
"hardhat-contract-sizer": "2.6.1",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "1.0.0-alpha.6",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"solc": "0.8.17",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "10.9.1",
"typechain": "7.0.1",
"typescript": "4.8.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/f8n/fnd-protocol-examples"
},
"bugs": {
"url": "https://github.com/f8n/fnd-protocol-examples/issues"
},
"homepage": "https://github.com/f8n/fnd-protocol-examples"
}