-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "microsmith",
"private": true,
"scripts": {
"build": "node src/microsmith.js",
"start": "nodemon src/microsmith.js & http-server dist/"
},
"nodemonConfig": {
"ignore": [
"dist/"
],
"watch": [
"package.json",
"src/",
"assets/",
"posts/",
"templates/"
],
"ext": "md,js,html,scss,json",
"events": {
"restart": "node src/tools/notifier.js 'Blog recompiled'"
}
},
"dependencies": {
"date-fns": "1.29.0",
"handlebars": "4.0.11",
"handlebars-layouts": "3.1.4",
"metalsmith": "2.3.0",
"metalsmith-collections": "0.9.0",
"metalsmith-excerpts": "1.2.0",
"metalsmith-feed": "1.0.0",
"metalsmith-layouts": "1.8.0",
"metalsmith-markdown": "0.2.2",
"metalsmith-metallic": "2.0.2",
"metalsmith-open-graph": "0.0.4",
"metalsmith-permalinks": "0.5.0",
"ncp": "2.0.0",
"node-notifier": "5.2.1",
"node-sass": "4.9.0",
"request": "2.85.0",
"request-promise": "4.2.2"
},
"devDependencies": {
"http-server": "0.11.1",
"nodemon": "1.17.4"
}
}