-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
51
52
{
"name": "abhushan.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "pnpm run sync && pnpm run lint && astro dev",
"start": "astro dev",
"build": "pnpm run sync && pnpm run lint && astro build",
"preview": "astro preview",
"astro": "astro",
"typecheck": "astro check",
"sync": "astro sync",
"prettier:format": "pnpm exec prettier . --write",
"prettier:check": "pnpm exec prettier . --check",
"prepare": "husky install",
"eslint": "eslint --fix . ",
"eslint:check": "eslint .",
"lint": "npm-run-all eslint prettier:format",
"lint:check": "npm-run-all typecheck eslint:check prettier:check"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/mdx": "^3.1.2",
"@astrojs/react": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.11.5",
"astro-expressive-code": "^0.35.3",
"lucide-react": "^0.390.0",
"react": "^18.3.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3"
}
}