This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
44 lines (44 loc) · 1.61 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
{
"name": "@story-protocol/protocol-periphery",
"version": "v1.0.0-beta-rc2",
"description": "Story Protocol periphery smart contracts",
"main": "",
"directories": {
"lib": "lib",
"test": "test"
},
"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"
},
"author": "StoryProtocol",
"license": "BUSL-1.1",
"devDependencies": {
"chai": "^5.0.3",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.10.0",
"husky": "^9.0.11",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.9.2",
"typechain": "^8.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.1",
"@story-protocol/protocol-core": "1.0.0-beta-rc6"
}
}