-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
62
63
64
65
66
67
68
69
{
"name": "11ty-equk",
"description": "Eleventy blog for equk",
"type": "module",
"scripts": {
"build": "node ./prebuild.mjs && NODE_ENV=production npx @11ty/eleventy",
"dev": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"devdebug": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"newpost": "node newpost.js"
},
"author": "equk <[email protected]>",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@eslint/js": "^9.20.0",
"@types/markdown-it": "^14.1.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"cssnano-preset-lite": "^4.0.3",
"dotenv": "^16.4.7",
"eleventy-plugin-seo": "^0.5.2",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.15.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-github-alerts": "^0.3.0",
"markdown-it-task-lists": "^2.1.1",
"postcss": "^8.5.2",
"postcss-import": "^16.1.0",
"prettier": "^3.5.1",
"sharp": "^0.33.5",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.17"
},
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.5",
"micromatch": ">=4.0.8",
"nanoid@<=3.3.7": "^3.3.8",
"prismjs": ">=1.30.0",
"semver": ">=7.5.2",
"send": ">=0.19.0",
"ws": ">=8.17.1"
}
}
}