-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "lturner.net",
"version": "1.0.0",
"description": "Personal Website",
"main": "main.js",
"author": "Landon Turner",
"license": "MIT",
"scripts": {
"debug": "DEBUG=metalsmith:* babel-node main.js",
"build": "NODE_ENV=production babel-node main.js",
"watch": "nodemon --watch source --watch layouts --watch main.js -e md,scss,hbs,js ./node_modules/.bin/babel-node main.js"
},
"dependencies": {
"metalsmith": "^2.3.0",
"metalsmith-babel": "^5.1.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-debug": "^1.2.0",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-layouts": "^2.3.0",
"metalsmith-markdown": "^1.2.0",
"metalsmith-permalinks": "^2.2.0",
"metalsmith-sass": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jstransformer-handlebars": "^1.1.0",
"nodemon": "^1.18.10"
}
}