-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 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
{
"name": "polygon-whitelist-nft",
"version": "1.0.0",
"repository": "https://github.com/unchain-tech/Polygon-Whitelist-NFT",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.47.0",
"eslint-plugin-html": "^7.1.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-plugin-solidity": "^1.1.3",
"simple-git-hooks": "^2.9.0",
"solhint": "^3.6.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"scripts": {
"contract": "yarn workspace contract",
"client": "yarn workspace client",
"solhint": "solhint --max-warnings 0 \"packages/contract/contracts/*.sol\"",
"lint": "eslint --ext .html,.js .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write --plugin=prettier-plugin-solidity --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore .",
"prettier:check": "prettier --check --plugin=prettier-plugin-solidity --ignore-unknown --no-error-on-unmatched-pattern --ignore-path .prettierignore .",
"test": "yarn contract test"
}
}