chore: add and configure poi

This commit is contained in:
2018-09-08 16:22:45 -07:00
parent 49ef9a6155
commit 421ec9f0db
5 changed files with 3810 additions and 74 deletions

View File

@@ -6,10 +6,9 @@
"module": "index.mjs",
"description": "strain search static website",
"scripts": {
"start": "node . serve",
"build": "node . build",
"dev": "nodemon -i dist/ -w src -e mjs,ejs -x 'node . build'",
"deploy": "node . build && firebase deploy"
"start": "poi",
"build": "poi build",
"deploy": "npm run build && firebase deploy"
},
"author": "joe fleming (https://github.com/w33ble)",
"license": "MIT",
@@ -18,10 +17,19 @@
},
"dependencies": {
"ejs": "^2.6.1",
"esm": "^3.0.81"
"esm": "^3.0.81",
"lunr": "^2.3.3",
"mitt": "^1.1.3",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17"
},
"devDependencies": {
"@poi/plugin-vue-static": "^1.0.7",
"babel-eslint": "^9.0.0",
"eslint-plugin-vue": "^4.7.1",
"firebase-tools": "^4.2.1",
"nodemon": "^1.18.4"
"nodemon": "^1.18.4",
"poi": "^10.2.10"
}
}