-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.61 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
53
54
55
56
{
"name": "vkbansal.me",
"version": "3.0.0",
"description": "Site for Vivek Kumar Bansal",
"type": "module",
"private": true,
"author": "Vivek Kumar Bansal <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint 'src/**/*.{ts,tsx,astro}'",
"fmt": "prettier --plugin-search-dir=. --write 'src/**/*.{ts,tsx,astro}'",
"fmt:c": "prettier --plugin-search-dir=. --check 'src/**/*.{ts,tsx,astro}'",
"check": "astro check && tsc --noEmit",
"spell": "cspell 'src/**/*.md'",
"dev": "astro dev",
"start": "astro dev",
"prebuild": "rm -rf public",
"build": "NODE_ENV=production astro build"
},
"dependencies": {
"@astrojs/markdown-remark": "^6.0.1",
"@shikijs/transformers": "^1.24.3",
"@shikijs/twoslash": "^1.24.3",
"astro": "^5.1.1",
"change-case": "^5.4.4",
"dayjs": "^1.11.13",
"html-entities": "^2.5.2",
"normalize.css": "^8.0.1",
"reading-time": "^1.5.0",
"rehype-attr": "^3.0.3",
"rehype-external-links": "^3.0.0",
"sass": "^1.83.0",
"sharp": "^0.33.5",
"shiki": "^1.24.3",
"typescript": "^5.7.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@cspell/eslint-plugin": "^8.17.1",
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"cspell": "^8.17.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.18.1"
}
}