-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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
36
37
38
39
40
41
42
43
{
"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:prettier:fix": "prettier --write .",
"lint:spell": "yaspeller .",
"lint": "npm run lint:prettier && npm run lint:code",
"lint:fix": "npm run lint:prettier:fix && npm run lint:code:fix",
"lint:code": "eslint --ext .js,.ts,.md .",
"lint:code:fix": "eslint --ext .js,.ts,.md . --fix",
"prepare": "husky install && npx patch-package"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"patch-package": "^8.0.1",
"prettier": "^2.7.1",
"reveal-md": "^6.1.4",
"typescript": "^4.8.4",
"yaspeller": "^9.1.0"
},
"lint-staged": {
"*.{js,json,html,css,md,yml,yaml,ts,tsx}": "prettier --write",
"{*js,*.md}": "eslint --cache --fix",
"*.md": "echo 'yaspeller is disabled'"
},
"dependencies": {
"fs-extra": "^11.3.0"
}
}