-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "personal-site",
"description": "My personal site",
"type": "module",
"version": "0.0.1",
"author": "Abdul<up2dul@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/up2dul/site.git"
},
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"check": "astro check",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write './**/*.{cjs,js,ts,json,md,astro,css}'",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/tailwind": "^5.1.0",
"@fontsource/inter": "^5.0.17",
"@fontsource/newsreader": "^5.0.17",
"astro": "^4.5.16",
"astro-icon": "^1.1.0",
"clsx": "^2.1.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@iconify-json/tabler": "^1.1.110",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.13"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0"
},
"lint-staged": {
"**/*.{ts,astro}": [
"eslint --fix"
],
"**/*.{cjs,js,ts,json,md,astro,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
}
}