-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "metalsmith-blog-starter",
"version": "1.0.0",
"description": "A simple Metalsmith blog starter",
"type": "module",
"keywords": [
"metalsmith",
"starter"
],
"author": "[email protected]",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development DEBUG=@metalsmith* node metalsmith.js",
"build": "cross-env NODE_ENV=production node metalsmith.js",
"serve": "browser-sync start --server 'build'",
"lint": "eslint --fix ."
},
"devDependencies": {
"browser-sync": "^3.0.2",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4"
},
"dependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.3.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/metadata": "^0.3.0",
"@metalsmith/permalinks": "^3.0.1",
"jstransformer-nunjucks": "^1.2.0",
"marked": "^11.2.0",
"metalsmith": "^2.6.2",
"metalsmith-debug-ui": "^0.3.2",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-if": "^0.1.1",
"metalsmith-metadata": "^0.0.4",
"metalsmith-prism": "^4.2.2",
"metalsmith-static-files": "^0.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}