-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "facette-blog",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.6",
"@fortawesome/free-solid-svg-icons": "5.4.1",
"smoothscroll-polyfill": "0.4.3",
"typeface-open-sans": "0.0.54",
"typeface-source-code-pro": "0.0.54"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@fortawesome/free-brands-svg-icons": "5.4.1",
"@fortawesome/free-regular-svg-icons": "5.4.1",
"autoprefixer": "9.2.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "0.1.19",
"concurrently": "4.0.1",
"css-loader": "1.0.0",
"eslint": "5.7.0",
"eslint-plugin-html": "4.0.6",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "4.9.4",
"postcss-loader": "3.0.0",
"sass-loader": "7.1.0",
"webpack": "4.20.2",
"webpack-cli": "3.1.2"
},
"scripts": {
"build": "webpack && hugo",
"clean": "rm -rf dist/ static/assets/",
"lint": "eslint --ext js --fix src/",
"release": "git stash save before-gh-pages; yarn build && git checkout gh-pages && cp -rf dist/* . && rm -rf dist/ static/",
"start": "concurrently --kill-others 'webpack --watch' 'hugo server --watch'"
}
}