-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "metalsmith-netlify-cms-starter",
"version": "0.0.2",
"description": "A Metalsmith starter with Netlify CMS integration",
"keywords": [
"metalsmith",
"starter"
],
"author": "werner@glinka.co",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development NODE_PATH=./node_modules npm run watch & npm run serve",
"build": "cross-env NODE_ENV=production node metalsmith.js",
"watch": "nodemon metalsmith.js",
"serve": "browser-sync start --server 'build' --files 'build/**'",
"edit": "cross-env NODE_ENV=development NODE_PATH=./node_modules npx netlify-cms-proxy-server & npm run watch & npm run serve",
"fstart": "cross-env NODE_ENV=development NODE_PATH=./node_modules npm run serve"
},
"nodemonConfig": {
"watch": [
"src",
"templates"
],
"ext": "js css scss njk json html md"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"cross-env": "^7.0.3",
"eslint": "^8.25.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",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"dependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.2.0",
"@metalsmith/layouts": "^2.6.0",
"@metalsmith/markdown": "^1.6.0",
"@metalsmith/metadata": "^0.1.0",
"@metalsmith/permalinks": "^2.4.0",
"jstransformer-nunjucks": "^1.1.0",
"metalsmith": "^2.5.1",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-if": "^0.1.1",
"metalsmith-prism": "^4.1.0",
"metalsmith-static-files": "^0.2.0"
},
"engines": {
"node": ">=14.0.0"
}
}