-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.52 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
49
50
51
52
{
"name": "mojebo",
"version": "1.0.0",
"description": "**Start your Jekyll project with this straightforward, minimalistic and modern boilerplate.**",
"main": "webpack.config.js",
"scripts": {
"start": "webpack --watch --mode development & bundle exec jekyll serve --livereload",
"webpack-build": "NODE_ENV=production webpack --mode production",
"jekyll-build": "JEKYLL_ENV=production bundle exec jekyll build",
"build": "yarn run webpack-build && yarn run jekyll-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kilianso/mojebo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kilianso/mojebo/issues"
},
"homepage": "https://github.com/kilianso/mojebo#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-spread": "^7.12.1",
"@babel/preset-env": "^7.6.3",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"base64-inline-loader": "^1.1.1",
"css-loader": "^5.0.1",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^5.2.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"is-svg": "^4",
"normalize.css": "^8.0.1",
"postcss": "^8.2.1",
"ssri": "^8"
},
"browserslist": [
"last 3 versions",
"IE 11",
"iOS 9"
]
}