-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.68 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
95
96
97
98
99
{
"name": "badges",
"version": "1.0.0",
"description": "Web oficial de la JSConf Chile 2025",
"bugs": {
"url": "https://github.com/UXCorpRangel/badges/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/UXCorpRangel/badges.git"
},
"license": "MIT",
"author": {
"name": "UXCorpRangel - Felix Icaza <[email protected]>",
"url": "https://github.com/UXCorpRangel/"
},
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"fn:build": "pnpm -r run build",
"fn:build:watch": "pnpm -r run build:watch",
"fn:deploy": "pnpm -r run deploy",
"fn:logs": "pnpm -r run logs",
"fn:serve": "pnpm -r run serve",
"fn:shell": "pnpm -r run shell",
"fn:start": "pnpm -r run start",
"lint:fix": "eslint --cache --fix ./",
"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}": [
"pnpm lint:fix"
],
"./**/*.ts": [
"pnpm lint:fix"
],
"./src/**/*.astro": [
"pnpm lint:fix"
],
"./src/**/*.{tsx}": [
"pnpm lint:fix"
]
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "4.2.0",
"@playform/compress": "0.1.7",
"@playform/inline": "0.1.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"astro": "5.2.5",
"astro-compressor": "1.0.0",
"astro-icon": "1.1.5",
"astro-seo-schema": "5.0.0",
"astro-sitemap": "1.0.0",
"lightningcss": "1.29.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"sanitize.css": "13.0.0",
"schema-dts": "1.1.2",
"typescript": "5.7.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint-react/eslint-plugin": "1.26.2",
"@eslint/js": "9.19.0",
"@ls-lint/ls-lint": "2.2.3",
"astro-eslint-parser": "1.2.1",
"eslint": "9.19.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-jsonc": "2.19.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-package-json": "0.23.0",
"eslint-plugin-perfectionist": "4.8.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"eslint-plugin-yml": "1.16.0",
"globals": "15.14.0",
"jsonc-eslint-parser": "2.4.0",
"lint-staged": "15.4.3",
"neostandard": "0.12.0",
"simple-git-hooks": "2.11.1",
"typescript-eslint": "8.23.0",
"yaml-eslint-parser": "1.2.3"
},
"engines": {
"node": ">=18.20.0",
"pnpm": ">=9.12.0"
}
}