-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.9 KB
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
57
58
59
60
61
62
63
64
65
{
"name": "leetcode-blog",
"description": "Solutions for LeetCode problems - Written by ansidev",
"type": "module",
"version": "3.0.1",
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"scripts": {
"lc:new": "tsx ./src/cmd/leetcode.ts",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "astro telemetry disable && husky",
"lint:js": "eslint .",
"lint:ts": "astro check && tsc --noEmit",
"lint": "pnpm run lint:js && pnpm run lint:ts"
},
"dependencies": {
"@astrojs/check": "^0.9.0",
"@astrojs/partytown": "^2.0.2",
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.0.3",
"@tailwindcss/postcss": "^4.1.4",
"@tailwindcss/vite": "^4.1.4",
"astro": "5.7.10",
"astro-compress": "^2.2.2",
"astro-purgecss": "^5.0.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.25.1",
"@fontsource/ibm-plex-mono": "^5.0.8",
"@iconify-json/bi": "^1.1.20",
"@resvg/resvg-js": "^2.6.0",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash.get": "^4.4.8",
"@types/lodash.kebabcase": "^4.1.8",
"@types/mustache": "^4.2.4",
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commander": "^13.0.0",
"commitizen": "^4.3.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.0.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"globals": "^16.0.0",
"husky": "^9.0.11",
"lodash.get": "^4.4.2",
"lodash.kebabcase": "^4.1.1",
"mustache": "^4.2.0",
"prettier-plugin-astro": "^0.14.0",
"satori": "^0.12.0",
"satori-html": "^0.3.2",
"tsx": "^4.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0"
}
}