-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.59 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
{
"name": "metalsmith-static-boilerplate",
"scripts": {
"start": "npm run servedev",
"builddev": "NODE_ENV=development DEBUG=metalsmith* npm run build",
"buildprod": "NODE_ENV=production npm run build",
"servedev": "NODE_ENV=development DEBUG=metalsmith* npm run serve",
"serveprod": "NODE_ENV=production npm run serve",
"build": "node build.js",
"serve": "npm run browser_sync & nodemon --exec 'npm run build && browser-sync reload'",
"browser_sync": "browser-sync --no-notify start --server build"
},
"author": "Trevor Dorsey <[email protected]> (http://www.foyyay.com)",
"repository": {
"type": "git",
"url": "[email protected]:tsdorsey/metalsmith-static-boilerplate.git"
},
"license": "UNLICENSED",
"private": true,
"dependencies": {
"babel-cli": "6.23.0",
"babel-preset-es2015": "6.22.0",
"bourbon": "4.3.3",
"browserify": "14.1.0",
"handlebars": "4.0.6",
"metalsmith": "2.3.0",
"metalsmith-autoprefixer": "1.1.1",
"metalsmith-babel": "4.1.0",
"metalsmith-browserify-alt": "1.0.1",
"metalsmith-clean-css": "5.0.1",
"metalsmith-html-minifier": "2.2.0",
"metalsmith-ignore": "0.1.2",
"metalsmith-in-place": "1.4.4",
"metalsmith-inline-svg": "0.1.4",
"metalsmith-layouts": "1.8.0",
"metalsmith-move-up": "1.0.0",
"metalsmith-rewrite": "0.1.2",
"metalsmith-robots": "1.0.1",
"metalsmith-sass": "1.4.0",
"metalsmith-sitemap": "1.2.0",
"metalsmith-timer": "0.0.2",
"metalsmith-uglify": "1.5.1"
},
"devDependencies": {
"browser-sync": "2.18.8",
"nodemon": "1.11.0"
}
}