diff options
| -rw-r--r-- | .gitignore | 15 | ||||
| -rw-r--r-- | package.json | 24 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be870a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.bundle +*.DS_Store +db/*.sqlite3 +log/*.log +tmp/ +.#* +*~ +*.orig +*# +*.swp +node_modules +restart +.env +*.sqlite3 + diff --git a/package.json b/package.json new file mode 100644 index 0000000..635e23d --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "portfolio", + "version": "1.0.0", + "description": "okfocus portfolio", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/okfocus/portfolio.git" + }, + "author": "okfocus <frontdesk@okfoc.us>", + "license": "LNT", + "bugs": { + "url": "https://github.com/okfocus/portfolio/issues" + }, + "dependencies": { + "dotenv": "^2.0.0", + "object-assign": "^2.0.0", + "okcms": "git+ssh://git@github.com:okfocus/okcms.git#v0.1.18" + }, + "homepage": "https://github.com/okfocus/portfolio" +} |
