-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "checklist",
"version": "1.0.0",
"description": "Тестовое задание для разработки компонента `Чеклиста`",
"main": "index.html",
"homepage": "https://notacat1.github.io/checklist",
"repository": {
"type": "git",
"url": "https://github.com/NotACat1/checklist"
},
"scripts": {
"start": "webpack serve --open",
"build": "webpack --mode development",
"production": "webpack --mode production",
"lint:less": "stylelint 'src/**/*.less'",
"lint:html": "htmlhint 'src/index.html'",
"format": "prettier --write 'src/**/*.{js,html,less}'",
"deploy": "gh-pages -d dist",
"predeploy": "npm run production",
"pre-commit": "npx lint-staged"
},
"keywords": [
"LESS",
"Webpack"
],
"author": "NotACat",
"license": "ISC",
"bugs": {
"url": "https://github.com/NotACat1/COMPASS-3D-courses-WEB/issues"
},
"lint-staged": {
"*.less": [
"prettier --write",
"stylelint --fix"
],
"*.html": [
"prettier --write",
"htmlhint"
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"css-loader": "^7.1.2",
"gh-pages": "^6.1.1",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"htmlhint": "^1.1.4",
"husky": "^9.0.11",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.7",
"postcss-less": "^6.0.0",
"prettier": "^3.3.2",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-recommended-less": "^3.0.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@condorhero/stylelint-config-css": "^2.0.0",
"normalize.css": "^8.0.1"
}
}