-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
62 lines (62 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
{
"name": "metalsmith.io",
"private": true,
"type": "module",
"scripts": {
"dev": "metalsmith -c metalsmith.js --env NODE_ENV=development --env DEBUG=@metalsmith*",
"build": "metalsmith -c metalsmith.js --env NODE_ENV=production",
"start": "NODE_ENV=development DEBUG=@metalsmith* node metalsmith.js --watch",
"serve": "browser-sync start --server 'build'",
"lint:css": "stylelint '**/*.scss'",
"lint:js": "eslint '**/*.js'",
"lint:prettier": "prettier --list-different '**/*.{js,scss}'",
"format": "prettier --write '**/*.{js,scss}'",
"test": "npm run build && mocha metalsmith.test.js"
},
"devDependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.3.0",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/js-bundle": "^0.8.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/metadata": "^0.3.0",
"@metalsmith/permalinks": "^3.0.1",
"@metalsmith/postcss": "^5.4.1",
"@metalsmith/sass": "^1.10.0",
"@metalsmith/table-of-contents": "^1.0.0",
"anchor-js": "^5.0.0",
"autoprefixer": "^10.4.14",
"browser-sync": "^3.0.2",
"cheerio": "^1.0.0-rc.12",
"cssnano": "^6.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.1",
"highlight.js": "^11.9.0",
"jstransformer-marked": "^1.4.0",
"jstransformer-nunjucks": "^1.2.0",
"metalsmith": "^2.6.3",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-sitemap": "^1.2.2",
"metalsmith-uglify": "^2.4.2",
"mocha": "^10.2.0",
"postcss": "^8.4.33",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.4",
"stylelint": "^16.2.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.0",
"stylelint-scss": "^6.1.0",
"stylelint-selector-bem-pattern": "^3.0.1"
},
"dependencies": {
"blazy": "^1.8.2"
},
"engines": {
"node": ">=14.17.0"
}
}