-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
32 lines (32 loc) · 1.13 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
{
"_comment": "🎌 WE'RE USING NPM SCRIPTS TO MANAGE THE BUILD PROCESS. LOCALLY, JUST `NPM INSTALL && BUNDLE INSTALL && NPM RUN JEKYLLFY 🎌",
"name": "vue-jekyll",
"repository": "https://github.com/keerthik/vue-jekyll",
"version": "0.0.1",
"description": "A bare-bones template for building static sites that leverage a modern javascript framework for dynamic functionality. Built with [NPM](https://www.npmjs.com), [Vue](https://vuejs.org), and [Jekyll](https://jekyllrb.com).",
"main": "main.js",
"scripts": {
"packit": "webpack --watch",
"buildit": "bundle exec jekyll serve --watch --incremental --host 0.0.0.0",
"jekyllfy": "npm run packit & npm run buildit",
},
"keywords": [
"jekyll",
"Vue"
],
"author": "Bryan Schuetz",
"license": "Fuck do I care?",
"dependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^8.0.0",
"babel-preset-es2015": "^6.22.0",
"json-loader": "^0.5.4",
"marked": "^0.3.6",
"vue": "^2.2.1",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.2.2",
"webfontloader": "^1.6.27",
"webpack": "^5.0.0"
}
}