forked from italia/design-scuole-pagine-statiche
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.86 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.86 KB
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
{
"name": "design-scuole-pagine-statiche",
"version": "3.0.0-alpha1",
"private": true,
"description": "Template HTML del progetto per la realizzazione dei siti web delle Scuole Italiane",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "vite build",
"preview": "vite preview",
"lint:html": "html-validate \"src/pages/**/*.html\"",
"lint:html:fix": "html-validate --fix \"src/pages/**/*.html\"",
"format": "prettier --write --ignore-path .prettierignore \"**/*.{js,css,html,json}\"",
"format:check": "prettier --check --ignore-path .prettierignore \"**/*.{js,css,html,json}\"",
"lint:js": "eslint \"src/js/**/*.js\"",
"lint:js:fix": "eslint --fix \"src/js/**/*.js\"",
"lint:css": "stylelint \"src/styles/**/*.css\"",
"lint:css:fix": "stylelint --fix \"src/styles/**/*.css\"",
"prepare": "husky install",
"documentation-deploy-to-gh-pages": "pnpm run build && pnpm dlx gh-pages -d dist -m 'chore: update documentation' --nojekyll",
"release:zip": "sh ./scripts/create-release-attachment.sh"
},
"dependencies": {
"@italia/dev-kit-italia": "latest"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"prettier": "^2.8.8",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"stylelint-config-prettier": "^9.0.0",
"eslint": "^8.50.0",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^32.0.0",
"extract-changelog-release": "^1.0.0",
"gh-pages": "^6.3.0",
"html-validate": "^9.7.1",
"fast-glob": "^3.3.0",
"vite": "^6.2.0"
},
"lint-staged": {
"src/pages/**/*.html": [
"pnpm run lint:html:fix"
],
"src/js/**/*.js": [
"pnpm run lint:js:fix"
],
"src/styles/**/*.css": [
"pnpm run lint:css:fix"
]
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.0.0"
}