-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 920 Bytes
/
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
{
"private": false,
"name": "@thesellouts/sellout-protocol",
"version": "0.1.4",
"description": "sold out shows.",
"main": "index.js",
"keywords": [],
"author": "@lucidlabs",
"license": "ISC",
"devDependencies": {
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"prettier-plugin-solidity": "^1.1.3"
},
"lint-staged": {
"*.{ts,js,css,md,sol}": "prettier --write",
"*.sol": "solhint"
},
"scripts": {
"format": "prettier --write \"**/*.sol\"",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-push": "pnpm run prettier:solidity"
}
}
}