-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"name": "landing",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write **/*.astro .",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
},
"dependencies": {
"@astrojs/sitemap": "^3.7.1",
"@astrojs/vercel": "^8.2.11",
"@fontsource-variable/manrope": "^5.2.5",
"@vercel/analytics": "^1.5.0",
"astro": "^5.18.1",
"sharp": "^0.34.1"
},
"devDependencies": {
"@eslint/css": "^0.7.0",
"@eslint/js": "^9.39.4",
"@eslint/markdown": "^6.6.0",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^16.5.0",
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "^8.57.2"
},
"engines": {
"node": ">=20.19.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
],
"overrides": {
"flatted": "^3.4.2",
"@eslint/plugin-kit": "^0.3.4"
}
}
}