generated from badabam/linter-template-hh-web-22-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 919 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
{
"name": "linter-template-hh-web-22-1",
"private": true,
"scripts": {
"test": "npm run eslint && npm run htmlhint && npm run prettier:check",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"htmlhint": "npx htmlhint '**/*.html'",
"eslint": "eslint .",
"eslint:write": "eslint --fix .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.7",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-links": "^6.4.13",
"@storybook/html": "^6.4.13",
"babel-loader": "^8.2.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"htmlhint": "^1.1.1",
"husky": "^7.0.0",
"lint-staged": "^12.3.2",
"prettier": "2.5.1"
}
}