-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "html-style-guide",
"version": "1.0.0",
"description": "A style guide which helps you write better, performant, structured, scalable and maintainable HTML.",
"private": "true",
"scripts": {
"build": "gatsby build",
"check": "tsc --noEmit",
"clean": "gatsby clean",
"develop": "gatsby develop",
"fix:css": "npm run lint:css -- --fix",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm run fix:css && npm run fix:js",
"format": "prettier --write .",
"lint:css": "stylelint --ignore-path .gitignore '**/*.css'",
"lint:js": "eslint --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"lint": "npm run lint:css && npm run lint:js",
"prepare": "husky",
"pretty-quick": "pretty-quick --staged",
"serve": "gatsby serve",
"update": "npx npm-check-updates --format group --interactive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcobiedermann/html-style-guide.git"
},
"bugs": {
"url": "https://github.com/marcobiedermann/html-style-guide/issues"
},
"keywords": [
"html",
"style",
"coding",
"guide",
"styleguide",
"best practices",
"tips"
],
"author": "Marco Biedermann",
"homepage": "https://www.marcobiedermann",
"license": "ISC",
"dependencies": {
"gatsby": "^5.14.1",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"lodash-es": "^4.17.21",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.1",
"typescript": "^5.7.2"
},
"lint-staged": {
"**/*": "npm run format"
}
}