forked from blockscout/frontend-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "blockscout_frontend-configs",
"version": "1.0.0",
"private": false,
"license": "MIT",
"engines": {
"node": "20",
"npm": "10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.37.0",
"eslint-plugin-jsonc": "^2.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"svgo": "^3.0.2",
"typescript": "^5.0.3"
},
"scripts": {
"prepare": "husky install",
"format-svg": "npx svgo -r ./configs",
"validate:featured-networks": "node ./tools/featured-networks-config-validator/index.js",
"validate:footer-links": "node ./tools/footer-links-config-validator/index.js",
"validate:marketplace": "node ./tools/marketplace-config-validator/index.js",
"validate:marketplace-security-reports": "node ./tools/marketplace-security-reports-validator/index.js"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json,yaml}": "prettier --write"
},
"dependencies": {
"yup": "^1.3.1"
}
}