-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "rossbrandon.dev",
"description": "Ross Brandon's personal website",
"type": "module",
"version": "1.0.0",
"author": "Ross Brandon",
"repository": {
"type": "git",
"url": "https://github.com/rosstafarian/rossbrandon.dev"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"clean": "rm -rf dist node_modules .astro .pnpm-store",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": ">=24.14.0"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.4",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"sharp": "^0.34.5",
"wrangler": "^4.80.0"
}
}