generated from danielcgilibert/blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.96 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
{
"name": "personal-site",
"type": "module",
"version": "1.3.0",
"description": "My personal blog and portfolio",
"author": {
"name": "William Moodhe",
"email": "[email protected]",
"url": "https://average.website"
},
"license": "GPL-3.0-only",
"contributors": [
"danielcgilibert"
],
"repository": {
"type": "git",
"url": "https://github.com/jetboom/personal-site"
},
"keywords": [
"astro",
"astrojs",
"astro-template",
"astro-blog",
"astro-b"
],
"bugs": {
"url": "https://github.com/danielcgilibert/blog-template/issues"
},
"scripts": {
"start": "tinacms dev -c \"astro dev\"",
"build": "astro build",
"sync": "astro sync",
"preview": "astro preview",
"postbuild": "pagefind --site dist",
"lint-fix": "eslint --fix",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/rss": "4.0.9",
"@iconify-json/logos": "latest",
"@iconify-json/ri": "latest",
"@iconify-json/skill-icons": "latest",
"@tinacms/cli": "^1.6.0",
"astro": "4.16.18",
"astro-icon": "^1.1.1",
"octokit": "^4.0.2",
"sass": "^1.77.8",
"tinacms": "^2.2.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@astrojs/mdx": "3.1.9",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.4",
"@eslint/js": "^9.11.0",
"@pagefind/default-ui": "^1.0.3",
"@tailwindcss/typography": "0.5.15",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^8.2.0",
"clsx": "2.1.1",
"eslint": "^9.10.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mdast-util-to-string": "^4.0.0",
"motion": "^11.17.0",
"pagefind": "^1.1.0",
"reading-time": "^1.5.0",
"remark-directive": "^3.0.0",
"remark-oembed": "^1.2.2",
"slugify": "^1.6.6",
"tailwind-merge": "2.6.0",
"tailwindcss": "3.4.17",
"typescript": "^5.5.4",
"typescript-eslint": "^8.6.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,astro}": [
"eslint --fix"
]
}
}