-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.93 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
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
95
96
97
98
99
100
101
102
103
104
{
"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 <fx.joliett17@gmail.com>",
"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.9",
"@playform/inline": "0.1.2",
"astro": "5.6.1",
"astro-capo": "0.0.1",
"astro-compressor": "1.0.0",
"astro-icon": "1.1.5",
"astro-seo-schema": "5.0.0",
"astro-sitemap": "1.0.0",
"lightningcss": "1.29.3",
"lightningcss-plugin-pxtorem": "0.0.8",
"sanitize.css": "13.0.0",
"schema-dts": "1.1.5",
"sharp": "0.34.1",
"typescript": "5.8.3"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.10.4",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/js": "9.24.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@ls-lint/ls-lint": "2.3.0",
"@typescript-eslint/parser": "8.29.1",
"astro-eslint-parser": "1.2.2",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"globals": "16.0.0",
"lint-staged": "15.5.1",
"neostandard": "0.12.1",
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1",
"simple-git-hooks": "2.12.1"
},
"engines": {
"node": ">=20.18.3",
"pnpm": ">=10.5.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"simple-git-hooks"
]
}
}