forked from MastersAcademy/fe-course-basic-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.98 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fe-course-basic-2023",
"version": "21.0.0",
"description": "Репозиторій з курсу \"Front-End for beginners 2023\" проекту Masters Academy",
"scripts": {
"lint": "lint-staged",
"lint:all": "npm run lint:branch-name && npm run lint:css && npm run lint:js && npm run lint:ts && npm run lint:html",
"lint:js": "npx eslint --config .eslintrc.js --no-error-on-unmatched-pattern ./homeworks/**/*.js",
"lint:ts": "npx eslint --config .eslintrc.js --no-error-on-unmatched-pattern ./homeworks/**/*.ts",
"lint:css": "npx stylelint --config .stylelintrc --allow-empty-input ./homeworks/**/*.{css,scss}",
"lint:html": "npx eslint --config .eslintrc.js --no-error-on-unmatched-pattern ./homeworks/**/*.html",
"lint:branch-name": "npx branch-name-lint ./.branchlintrc.json",
"prepare": "husky install"
},
"dependencies": {
"@angular-eslint/eslint-plugin": "^13.0.1",
"@angular-eslint/eslint-plugin-template": "^13.0.1",
"@angular-eslint/template-parser": "^13.0.1",
"@html-eslint/eslint-plugin": "^0.12.0",
"@html-eslint/parser": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"branch-name-lint": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-no-jquery": "^2.6.0",
"stylelint": "^13.13.1",
"typescript": "^4.5.2"
},
"devDependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
},
"author": "MZabolotnev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MastersAcademy/fe-course-basic-2023"
},
"bugs": {
"url": "https://github.com/MastersAcademy/fe-course-basic-2023/issues"
},
"homepage": "https://github.com/MastersAcademy/fe-course-basic-2023",
"lint-staged": {
"*.{js,html,ts}": [
"eslint --config .eslintrc.js"
],
"*.{css,scss}": [
"stylelint --config .stylelintrc"
]
}
}