-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"name": "logo-downloadtip-root",
"private": true,
"type": "module",
"engines": {
"node": ">=23",
"npm": "uses pnpm",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.2",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"checks": "npm run check-docs && npm run formatting:check && npm run lint && npm run lint:styles",
"check-docs": "remark --frail . --ext md,markdown,mdx",
"formatting:check": "prettier --check --ignore-unknown \"**/*\"",
"formatting": "npm run formatting:check -- --write",
"lint": "eslint --max-warnings 0",
"lint:fix": "npm run lint -- --write",
"lint:styles": "stylelint \"**/*.{css,scss}\"",
"lint:styles:fix": "stylelint \"**/*.{css,scss}\" --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@tiagoporto/dependabot-config": "^1.2.0",
"@tiagoporto/editor-config": "^1.3.0",
"@tiagoporto/eslint-config": "^2.9.1",
"@tiagoporto/prettier-config": "^1.2.0",
"@tiagoporto/remark-config": "^1.6.0",
"@tiagoporto/stylelint-config": "^1.1.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"stylelint": "^16.13.2"
}
}