-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "boilerplate",
"version": "1.0.0",
"private": true,
"description": "Boilerplate que incluye integraciones y configuraciones enfocadas en buenas prácticas para construir sitios rápidos, accesibles y listos para producción.",
"keywords": [
"astro",
"astrojs",
"astro-boilerplate",
"astro-template",
"boilerplate",
"starter",
"starter-template",
"template"
],
"bugs": {
"url": "https://github.com/UXCorpRangel/boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/UXCorpRangel/boilerplate.git"
},
"license": "MIT",
"author": "UXCorpRangel - Felix Icaza <[email protected]>",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"prepare": "simple-git-hooks",
"preview": "astro preview",
"start": "astro dev"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm ls-lint",
"commit-msg": "pnpm commitlint -c -e ${1}"
},
"lint-staged": {
"./**/*.{js,mjs,cjs}": [
"eslint --cache --fix ./",
"prettier --cache --write \"./**/*.{js,mjs,cjs}\""
],
"./**/*.ts": [
"eslint --cache --fix ./",
"prettier --cache --write \"./**/*.ts\""
],
"./src/**/*.astro": [
"eslint --cache --fix ./src/",
"prettier --cache --write \"./src/**/*.astro\""
],
"./src/**/*.css": "prettier --cache --write \"./src/**/*.css\"",
"./**/*.svg": "prettier --cache --write \"./**/*.svg\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.{yaml,yml}": "prettier --cache --write \"./**/*.{yaml,yml}\""
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@playform/compress": "0.1.6",
"@playform/inline": "0.1.0",
"astro": "5.1.1",
"astro-compressor": "1.0.0",
"astro-icon": "1.1.5",
"astro-seo-schema": "5.0.0",
"astro-sitemap": "1.0.0",
"lightningcss": "1.28.2",
"sanitize.css": "13.0.0",
"schema-dts": "1.1.2",
"typescript": "5.7.2"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.10.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.17.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@ls-lint/ls-lint": "2.2.3",
"@typescript-eslint/parser": "8.19.0",
"astro-eslint-parser": "1.1.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"globals": "15.14.0",
"lint-staged": "15.3.0",
"neostandard": "0.12.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"simple-git-hooks": "2.11.1"
},
"engines": {
"node": ">=18.20.0",
"pnpm": ">=9.12.0"
}
}