-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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": "metalsmith-blog-starter",
"version": "0.1.1",
"description": "A simple Metalsmith blog starter",
"keywords": [
"metalsmith",
"starter"
],
"author": "[email protected]",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development node ./scripts/watch.js",
"build": "cross-env NODE_ENV=production node metalsmith.js",
"serve": "browser-sync start --server 'build'",
"lint": "eslint --fix ."
},
"nodemonConfig": {
"watch": [
"src",
"layouts"
],
"ext": "js css scss njk json html md"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0"
},
"dependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.2.0",
"@metalsmith/layouts": "^2.6.0",
"@metalsmith/markdown": "^1.6.0",
"@metalsmith/metadata": "^0.2.0",
"@metalsmith/permalinks": "^2.4.1",
"@metalsmith/rss": "^1.0.1",
"jstransformer-nunjucks": "^1.1.0",
"marked": "^4.2.3",
"metalsmith": "^2.5.1",
"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.1.1",
"metalsmith-static-files": "^0.2.1"
},
"engines": {
"node": ">=14.0.0"
}
}