generated from danielcgilibert/blog-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
{
"name": "server-restart-engineer",
"type": "module",
"version": "1.1.0",
"description": "Software Engineering Blog",
"author": "phuhung273",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/phuhung273/server-restart-engineer"
},
"keywords": [
"astro",
"astrojs",
"astro-template",
"astro-blog",
"astro-b",
"cloud"
],
"bugs": {
"url": "https://github.com/phuhung273/server-restart-engineer"
},
"scripts": {
"dev": "tinacms dev -c \"astro dev\"",
"start": "astro dev",
"build": "astro build",
"sync": "astro sync",
"preview": "astro preview",
"postbuild": "pagefind --site dist",
"format:check": "prettier --plugin-search-dir=. --check .",
"format": "prettier --plugin-search-dir=. --write .",
"lint": "eslint .",
"pre-commit": "lint-staged"
},
"dependencies": {
"@astrojs/rss": "4.0.9",
"@tinacms/cli": "^1.6.11",
"astro": "4.16.14",
"tinacms": "^2.4.0"
},
"devDependencies": {
"@astrojs/mdx": "3.1.9",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.2",
"@pagefind/default-ui": "^1.2.0",
"@tailwindcss/typography": "0.5.15",
"@typescript-eslint/parser": "^8.15.0",
"clsx": "2.1.1",
"cypress": "^13.16.0",
"eslint": "^9.15.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"lint-staged": "^15.2.10",
"mdast-util-to-string": "^4.0.0",
"motion": "^11.11.17",
"pagefind": "^1.2.0",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.14.1",
"reading-time": "^1.5.0",
"slugify": "^1.6.6",
"tailwind-merge": "2.5.5",
"tailwindcss": "3.4.15",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{astro,js,jsx,ts,tsx,md,mdx,json}": [
"prettier --write --plugin-search-dir=."
]
}
}