-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "jakemulley.github.io",
"version": "0.0.4",
"description": "A static site for jakemulley.com",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jakemulley/jakemulley.github.io.git"
},
"scripts": {
"ci": "npm run lint && npm run format:check",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"dev": "astro dev",
"start": "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.2.1",
"@astrojs/tailwind": "^5.1.2",
"@tailwindcss/typography": "^0.5.15",
"astro": "^4.16.6",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.8"
}
}