forked from cnorick/jekyll-theme-easy-wedding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.96 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": "jekyll-theme-easy-wedding",
"version": "1.0.0",
"description": "Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "npm run serve:webpack & sleep 3 && npm run serve:jekyll",
"serve:webpack": "webpack --mode development --watch",
"serve:jekyll": "bundle exec jekyll serve -s example --livereload",
"build": "npm run build:webpack && npm run build:jekyll",
"build:webpack": "webpack --mode production",
"build:jekyll": "JEKYLL_ENV=production bundle exec jekyll build",
"test": "echo \"Error: no test specified\" && exit 1",
"publish-gem": "rm jekyll-theme-easy-wedding-*.gem; npm run build && bump patch && gem build jekyll-theme-easy-wedding.gemspec && gem push jekyll-theme-easy-wedding-*.gem",
"preinstall": "bundle install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnorick/jekyll-theme-easy-wedding.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnorick/jekyll-theme-easy-wedding/issues"
},
"homepage": "https://github.com/cnorick/jekyll-theme-easy-wedding#readme",
"dependencies": {
"@popperjs/core": "^2.9.2",
"bootstrap": "^5.0.2",
"bootstrap-icons": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"cssnano": "^5.0.7",
"exports-loader": "^3.0.0",
"file-loader": "^6.2.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2"
}
}