-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 824 Bytes
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
{
"name": "git-workshop",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"dependencies": {
"@astrojs/mdx": "5.0.6",
"@astrojs/sitemap": "3.7.2",
"@tailwindcss/vite": "4.3.0",
"astro": "6.3.7",
"tailwindcss": "4.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/parser": "8.59.4",
"astro-eslint-parser": "1.4.0",
"eslint": "10.4.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.8.0"
}
}