-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "jakemulley.github.io",
"version": "0.0.4",
"description": "A static site for jakemulley.com",
"type": "module",
"packageManager": "npm@11.12.1",
"repository": {
"type": "git",
"url": "git+https://github.com/jakemulley/jakemulley.github.io.git"
},
"scripts": {
"ci": "npm run format:check",
"format": "prettier . --write",
"format:check": "prettier . --check",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"author": "Jake Mulley",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakemulley/jakemulley.github.io/issues"
},
"homepage": "https://github.com/jakemulley/jakemulley.github.io#readme",
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.1",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}