-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"private": true,
"name": "gdsc-ntnu-blog",
"type": "module",
"scripts": {
"dev": "npx tinacms dev -c \"astro dev\"",
"start": "astro dev",
"build": "astro build",
"sync": "astro sync",
"preview": "astro preview",
"postbuild": "pagefind --site dist",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. --check .",
"format": "prettier --ignore-path .gitignore --plugin-search-dir=. --write .",
"lint": "eslint .",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@astrojs/rss": "^4.0.7",
"astro": "^4.14.2",
"astro-font": "^0.0.72"
},
"devDependencies": {
"@astrojs/mdx": "2.0.3",
"@astrojs/sitemap": "3.0.4",
"@astrojs/tailwind": "5.1.0",
"@pagefind/default-ui": "^1.1.0",
"@tailwindcss/typography": "0.5.10",
"@tinacms/cli": "^1.5.53",
"@typescript-eslint/parser": "^6.21.0",
"clsx": "2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"mdast-util-to-string": "^4.0.0",
"motion": "^10.18.0",
"pagefind": "^1.1.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.0.0",
"tailwindcss": "3.3.5",
"tinacms": "^2.1.1",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{astro,js,jsx,ts,tsx,md,mdx,json}": [
"prettier --write --plugin-search-dir=."
]
},
"packageManager": "[email protected]"
}