-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.42 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
{
"name": "2024.shahid.pro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"prepreview": "npm run build",
"preview": "astro preview",
"astro": "astro",
"create:post": "node scripts/createPost.mjs",
"create:project": "node scripts/createProject.mjs",
"check:lint": "eslint --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore --fix .",
"check:format": "prettier --list-different \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\"",
"validate": "npm-run-all --parallel check:*",
"postbuild": "pagefind"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/react": "^3.6.1",
"@astrojs/rss": "^4.0.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@phosphor-icons/react": "^2.1.5",
"@playform/inline": "^0.0.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"astro": "^4.13.2",
"mdast-util-to-string": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.5.0",
"satori": "^0.10.13",
"satori-html": "^0.3.2",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.1",
"tm-themes": "^1.4.3",
"typescript": "^5.3.3"
},
"devDependencies": {
"@pagefind/default-ui": "^1.1.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.13",
"@types/inquirer": "^9.0.7",
"@types/json-to-pretty-yaml": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"chalk": "^5.3.0",
"date-fns": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"inquirer": "^9.2.18",
"json-to-pretty-yaml": "^1.2.2",
"npm-run-all": "^4.1.5",
"pagefind": "^1.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwind-merge": "^2.2.1",
"title-case": "^4.3.1",
"yamljs": "^0.3.0"
}
}