-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.66 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
{
"name": "jakubsoboczynski",
"version": "2.0.2",
"type": "module",
"description": "Jakub Soboczyński Portfolio",
"homepage": "https://www.jakubsoboczynski.pl/",
"repository": {
"type": "git",
"url": "git@github.com:teziovsky/jakubsoboczynski.git"
},
"engines": {
"node": ">=v18.0.0",
"npm": ">=v8.0.0"
},
"bugs": {
"url": "https://github.com/teziovsky/jakubsoboczynski/issues",
"email": "teziovsky@gmail.com"
},
"author": {
"name": "Jakub Soboczyński",
"email": "kontakt@jakubsoboczynski.pl",
"url": "https://www.jakubsoboczynski.pl"
},
"scripts": {
"clean": "rm -rf ./.astro ./dist ./node_modules ./package-lock.json ./pnpm-lock.yaml ./bun.lockb",
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --check --log-level warn '**/*.{js,jsx,ts,tsx,md,mdx,json,astro}'",
"lint": "eslint --quiet .",
"typecheck": "astro check",
"fix": "npm run format && npm run lint -- --fix && npm run typecheck",
"astro": "astro",
"lighthouse": "bunx unlighthouse --site localhost:3000",
"commitlint": "commitlint --edit",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --quiet --fix"
],
"*.{js,jsx,ts,tsx,md,mdx,json,astro,css}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/partytown": "^2.1.2",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/ts-plugin": "^1.10.4",
"@iconify-json/lucide": "^1.2.20",
"@iconify-json/tabler": "^1.2.13",
"astro": "^5.1.1",
"astro-icon": "^1.1.4",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.4",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"rehype-external-links": "^3.0.0",
"tailwind-merge": "^2.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@tailwindcss/typography": "^0.5.15",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"astro-compress": "^2.3.5",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}