-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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": "otus--javascript-basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "reveal-md",
"lint:prettier": "prettier --check .",
"lint:spell": "yaspeller .",
"lint": "yarn lint:prettier && yarn lint:spell && yarn lint:code",
"lint:code": "eslint --ext .js,.ts,.md .",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.0.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.2",
"lint-staged": "^11.2.2",
"prettier": "^2.4.1",
"reveal-md": "^5.1.3",
"typescript": "^4.5.2",
"yaspeller": "^7.1.0"
},
"lint-staged": {
"*.{js,json,html,css,md,yml,yaml,ts,tsx}": "prettier --write",
"{*js,*.md}": "eslint --cache --fix",
"*.md": "yaspeller"
}
}