-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "metalsmith-company-starter",
"version": "1.0.0",
"description": "A Metalsmith company website starter",
"keywords": [
"metalsmith",
"starter"
],
"author": "[email protected]",
"license": "MIT",
"type": "module",
"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",
"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": {
"@barba/core": "^2.9.7",
"@barba/css": "^2.1.15",
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.3.0",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/js-bundle": "^0.6.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/metadata": "^0.3.0",
"@metalsmith/permalinks": "^3.0.1",
"@metalsmith/postcss": "^5.4.1",
"@metalsmith/sass": "^1.8.1",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"esbuild": "^0.20.0",
"jstransformer-markdown": "^1.2.1",
"jstransformer-nunjucks": "^1.2.0",
"marked": "^11.2.0",
"metalsmith": "^2.6.2",
"metalsmith-assets": "^0.1.0",
"metalsmith-debug-ui": "^0.3.2",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-if": "^0.1.1",
"metalsmith-prism": "^4.2.2",
"metalsmith-static-files": "^0.3.0",
"postcss-preset-env": "^9.3.0"
},
"engines": {
"node": ">=14.0.0"
}
}