This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
generated from storyprotocol/solidity-template
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
63 lines (63 loc) · 2.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
{
"name": "@story-protocol/protocol-core",
"version": "v1.0.0-beta-rc6",
"description": "Story Protocol core smart contracts",
"main": "",
"directories": {
"lib": "lib",
"test": "test"
},
"author": "StoryProtocol",
"license": "UNLICENSED",
"scripts": {
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --check && eslint --ignore-path .gitignore .",
"lint:js:fix": "prettier --log-level warn --ignore-path .gitignore '**/*.{js,ts}' --write && eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --check && solhint '{contracts,test}/**/*.sol'",
"lint:sol:fix": "prettier --log-level warn --ignore-path .gitignore '{contracts,test}/**/*.sol' --write",
"solhint": "solhint '{contracts,test}/**/*.sol'",
"test": "npx hardhat test",
"prepare": "husky install",
"docgen": "hardhat docgen"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"@tenderly/hardhat-tenderly": "^2.2.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"base64-sol": "^1.1.0",
"chai": "^5.0.3",
"dotenv": "^16.4.1",
"ds-test": "https://github.com/dapphub/ds-test",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6",
"forge-std": "github:foundry-rs/forge-std#v1.7.6",
"hardhat": "^2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.10",
"husky": "^8.0.0",
"minimatch": "^9.0.3",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.0",
"solhint": "^4.1.1",
"solhint-community": "^3.7.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.6",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.2",
"typechain": "^8.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.1",
"erc6551": "^0.3.1"
}
}