-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.48 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
45
46
47
{
"name": "website",
"version": "1.0.0",
"description": "Personal website and blog",
"author": "Omar Elhawary <oedotme@gmail.com> (https://omarelhawary.me)",
"license": "MIT",
"type": "module",
"repository": {
"url": "https://github.com/oedotme/website"
},
"scripts": {
"dev": "astro dev --port 3000",
"build": "astro build",
"preview": "astro build; astro preview --port 5000",
"type-check": "astro check; tsc --noEmit",
"format": "prettier --write 'src/**/*.{astro,css,html,json,md,mdx,js,jsx,ts,tsx}'",
"lint": "eslint --fix 'src/**/*.{astro,js,jsx,ts,tsx}'",
"prepare": "husky"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.7",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.2",
"@astrojs/tailwind": "^5.1.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"astro": "^4.15.9",
"eslint": "^9.11.1",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"rehype-prism-plus": "^2.0.0",
"solid-js": "^1.9.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}