-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.86 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
57
58
59
60
61
{
"name": "leetcode-blog",
"description": "Solutions for LeetCode problems - Written by ansidev",
"type": "module",
"version": "2.2.6",
"license": "MIT",
"packageManager": "pnpm@8.6.12",
"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 install",
"lint:js": "eslint --ext .cjs,.mjs,.ts,.astro --ignore-path .gitignore .",
"lint:ts": "astro check && tsc --noEmit",
"lint": "pnpm run lint:js && pnpm run lint:ts"
},
"dependencies": {
"@astrojs/partytown": "^1.2.3",
"@astrojs/rss": "^2.4.4",
"@astrojs/sitemap": "^2.0.1",
"@astrojs/tailwind": "^4.0.0",
"@otterlord/astro-compress": "^1.1.48",
"astro": "2.10.3",
"astro-purgecss": "^2.3.0",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@fontsource/ibm-plex-mono": "^5.0.8",
"@iconify-json/bi": "^1.1.18",
"@resvg/resvg-js": "^2.4.1",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash.get": "^4.4.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/mustache": "^4.2.2",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"commander": "^11.0.0",
"commitizen": "^4.3.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-plugin-astro": "^0.28.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lodash.get": "^4.4.2",
"lodash.kebabcase": "^4.1.1",
"mustache": "^4.2.0",
"sass": "^1.64.2",
"satori": "^0.10.2",
"satori-html": "^0.3.2",
"tailwindcss-themer": "^3.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}