Initial commit
parents
Showing
.editorconfig
0 → 100644
.gitignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
client/indexedDB.js
0 → 100644
client/keys.js
0 → 100644
client/logout.js
0 → 100644
client/script.js
0 → 100644
client/sign-in.js
0 → 100644
config/default.json
0 → 100644
config/production.json
0 → 100644
gulpfile.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "publickey-auth-feathers", | ||
"description": "Spike 5", | ||
"version": "0.0.0", | ||
"homepage": "http://indienet.info/spikes/security", | ||
"main": "server", | ||
"keywords": [ | ||
"feathers" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git@source.ind.ie:indienet/spikes/security/publickey-auth-feathers.git" | ||
}, | ||
"author": { | ||
"name": "Wim Vantomme", | ||
"email": "wim.vantomme@daraja.be" | ||
}, | ||
"contributors": [ | ||
"Frauke Vanderzijpen <frauke.vanderzijpen@digipolis.gent>" | ||
], | ||
"license": "AGPLv3", | ||
"bugs": {}, | ||
"directories": { | ||
"lib": "server", | ||
"test": "test/" | ||
}, | ||
"engines": { | ||
"node": "^8.0.0", | ||
"npm": ">= 3.0.0" | ||
}, | ||
"scripts": { | ||
"test": "npm run eslint && npm run mocha", | ||
"start": "node server/", | ||
"watch": "nodemon server", | ||
"mocha": "mocha test/ --recursive --exit" | ||
}, | ||
"dependencies": { | ||
"@feathersjs/authentication": "^2.1.1", | ||
"@feathersjs/authentication-jwt": "^2.0.0", | ||
"@feathersjs/configuration": "^1.0.2", | ||
"@feathersjs/errors": "^3.2.2", | ||
"@feathersjs/express": "^1.1.2", | ||
"@feathersjs/feathers": "^3.0.5", | ||
"@feathersjs/socketio": "^3.0.2", | ||
"axios": "^0.17.1", | ||
"compression": "^1.7.1", | ||
"cors": "^2.8.4", | ||
"helmet": "^3.9.0", | ||
"jsonwebtoken": "^8.1.1", | ||
"libsodium-wrappers": "^0.7.3", | ||
"passport-custom": "^1.0.5", | ||
"serve-favicon": "^2.4.5", | ||
"winston": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"browserify": "^15.2.0", | ||
"event-stream": "^3.3.4", | ||
"glob": "^7.1.2", | ||
"gulp": "^3.9.1", | ||
"gulp-rename": "^1.2.2", | ||
"mocha": "^5.0.0", | ||
"request": "^2.83.0", | ||
"request-promise": "^4.2.2", | ||
"standard": "^10.0.3", | ||
"vinyl-source-stream": "^2.0.0" | ||
} | ||
} |
public/favicon.ico
0 → 100644
5.4 KB
public/index.html
0 → 100644
public/sign-in.html
0 → 100644
public/signed-in.html
0 → 100644
server/app.hooks.js
0 → 100644
server/app.js
0 → 100644