-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
48
49
50
{
"name": "bfzli",
"version": "1.0.0",
"description": "A place where I share my thoughts and learnings 💭",
"author": "Benjamin Fazli <bfzli@hotmail.com> (https://bfzli.com)",
"license": "MIT",
"repository": {
"url": "https://github.com/bfzli/bfzli"
},
"scripts": {
"dev": "astro dev --port 3000",
"build": "astro build",
"preview": "astro build; astro preview --port 5000",
"check": "astro check && tsc",
"format": "prettier -w 'src/**/*.{astro,css,html,json,md,mdx,js,jsx,ts,tsx}'",
"lint": "eslint --fix 'src/**/*.{astro,js,jsx,ts,tsx}'",
"generate-thumbnails": "node scripts/generate-thumbnails.js"
},
"devDependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/mdx": "^2.1.1",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/solid-js": "^4.0.1",
"@astrojs/tailwind": "^5.1.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"astro": "^4.4.14",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-solid": "^0.13.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.12",
"rehype-prism-plus": "^2.0.0",
"sharp": "^0.33.4",
"solid-js": "^1.8.15",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@astrojs/partytown": "^2.1.1"
}
}