forked from bnb-chain/developer-tools-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 739 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 739 Bytes
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
{
"name": "developer-tools-list",
"version": "1.0.0",
"description": "This landscape represents a comprehensive list of tools that developers use when developing smart contracts on the BNB Chain, including BNB Smart Chain, opBNB Chain, and Greenfield Chain.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint-staged": "npx lint-staged",
"lint": "jsonlint",
"prepare": "husky"
},
"devDependencies": {
"eslint": "^9.9.0",
"husky": "^9.1.5",
"jsonlint": "^1.6.3",
"lint-staged": "^6.1.1",
"prettier": "^3.3.3",
"stylelint": "^16.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.json": "jsonlint"
}
}