Files
test-git/package.json
NEW_GIL_HOME\hyeon 817f10c50c
All checks were successful
코드 품질 검사 / 린트 검사 (push) Successful in 4m34s
Test Runner / test (push) Successful in 2m7s
refactor: HTML 및 CSS 코드 수정
- index.html에서 불필요한 h2 태그 제거
- SCSS 및 CSS 파일에서 box-sizing 및 transform 속성 정리
- 이미지 경로를 따옴표로 감싸기
- 주석 및 코드 정리
2026-01-31 22:27:58 +09:00

20 lines
654 B
JSON

{
"name": "test-git",
"version": "1.0.0",
"description": "프런트엔드 프로젝트",
"scripts": {
"lint": "npm run lint:html && npm run lint:css",
"lint:html": "htmlhint \"**/*.html\" --ignore \"node_modules/**\"",
"lint:css": "stylelint \"**/*.css\" \"**/*.scss\" --ignore-pattern \"node_modules/**\"",
"lint:fix": "stylelint \"**/*.css\" \"**/*.scss\" --fix --ignore-pattern \"node_modules/**\"",
"prepare": "husky"
},
"devDependencies": {
"htmlhint": "^1.1.4",
"husky": "^9.0.11",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0"
}
}