-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1007 Bytes
/
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
{
"name": "metalplate",
"version": "1.0.0",
"description": "A Metalsmith boilerplate for blogs",
"main": "build.js",
"scripts": {
"start": "node .",
"dev": "npm run sync & NODE_ENV=development nodemon --exec 'npm start && browser-sync reload'",
"sync": "browser-sync start --server public --browser=chrome",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"metalsmith",
"boilerplate",
"blog",
"starter"
],
"author": "Alex Wulkan",
"license": "MIT",
"dependencies": {
"metalsmith": "^2.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-layouts": "^1.8.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-pagination": "^1.4.0",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-sass": "^1.4.0",
"metalsmith-sitemap": "^1.2.0",
"moment": "^2.17.1",
"nunjucks": "^3.0.0"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"nodemon": "^1.11.0"
}
}