-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
84 lines (84 loc) · 2.5 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
{
"name": "unicorn-sparkle",
"private": true,
"description": "Unicorn Sparkle es la plantilla de portafolio definitiva para desarrolladores que quieren brillar.",
"keywords": [
"portfolio",
"astro",
"porfolio-template",
"astrojs",
"astro-template"
],
"bugs": {
"url": "https://github.com/UXCorpRangel/portfolios-dev/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/UXCorpRangel/portfolios-dev.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": "husky",
"preview": "astro preview",
"start": "astro dev"
},
"lint-staged": {
"./**/*.{js,mjs,cjs}": [
"eslint --cache --fix --ext .js,.mjs,.cjs ./",
"prettier --cache --write \"./**/*.{js,mjs,cjs}\""
],
"./**/*.ts": [
"eslint --cache --fix --ext .ts ./",
"prettier --cache --write \"./**/*.ts\""
],
"./src/**/*.astro": [
"eslint --cache --fix --ext .astro ./src/",
"prettier --cache --write \"./src/**/*.astro\""
],
"./src/**/*.css": "prettier --cache --write \"./src/**/*.css\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.yml": "prettier --cache --write \"./**/*.yml\""
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrolicious/i18n": "0.6.1",
"@fontsource-variable/inter": "5.2.5",
"@playform/compress": "0.1.7",
"astro": "5.2.3",
"astro-compressor": "1.0.0",
"astro-icon": "1.1.5",
"astro-imagetools": "0.9.0",
"astro-seo-schema": "5.0.0",
"astro-sitemap": "1.0.0",
"astro-tunnel": "0.1.6",
"i18next": "24.2.2",
"sanitize.css": "13.0.0",
"schema-dts": "1.1.2",
"typescript": "5.7.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.0",
"astro-eslint-parser": "1.2.1",
"eslint": "8.57.0",
"eslint-config-love": "47.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.6"
}
}