-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "portfolios-dev",
"private": true,
"description": "Una colección única de plantillas de portafolios para desarrolladores.",
"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 <[email protected]>",
"scripts": {
"build:ru": "pnpm -C rainbow-unicorn build",
"build:us": "pnpm -C unicorn-sparkle build",
"dev:ru": "pnpm -C rainbow-unicorn dev",
"dev:us": "pnpm -C unicorn-sparkle dev",
"performance:us": "lighthouse-badges -u https://unicorn-sparkle.web.app/ -o ./unicorn-sparkle/performance/ -b for-the-badge",
"prepare": "husky",
"preview:ru": "pnpm -C rainbow-unicorn preview",
"preview:us": "pnpm -C unicorn-sparkle preview"
},
"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\""
],
"./**/*.astro": [
"eslint --cache --fix --ext .astro ./",
"prettier --cache --write \"./**/*.astro\""
],
"./**/*.css": "prettier --cache --write \"./**/*.css\"",
"./**/*.json": "prettier --cache --write \"./**/*.json\"",
"./**/*.yml": "prettier --cache --write \"./**/*.yml\""
},
"dependencies": {
"lighthouse-badges": "1.3.8"
},
"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.2",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.6"
}
}