-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
76 lines (76 loc) · 2.34 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
{
"name": "ana-rangel-portafolio",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"clean": "git clean -xdf node_modules dist",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json,astro}\"",
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,mdx,json,astro}\"",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"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\"",
"./**/*.yml": "prettier --cache --write \"./**/*.yml\""
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrolicious/i18n": "0.4.3",
"@fontsource-variable/inter": "5.2.5",
"@neodrag/vanilla": "2.3.0",
"@playform/compress": "0.1.6",
"astro": "4.4.11",
"astro-capo": "0.0.1",
"browserslist": "4.24.4",
"embla-carousel": "8.5.2",
"embla-carousel-autoplay": "8.5.2",
"i18next": "23.0.0",
"lightningcss": "1.28.2",
"sharp": "0.33.5",
"typescript": "5.7.2"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.10.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/types": "19.5.0",
"@eslint/js": "9.17.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/node": "22.10.2",
"@typescript-eslint/parser": "8.18.2",
"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",
"typescript-eslint": "8.18.2"
}
}