Initial add
This is the generated Feathers app scaffolding.
parents
Showing
.editorconfig
0 → 100644
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
config/default.json
0 → 100644
config/production.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "indienet-engine", | ||
"description": "Indienet Engine (see https://indienet.info)", | ||
"version": "0.0.0", | ||
"homepage": "", | ||
"main": "src", | ||
"keywords": [ | ||
"feathers" | ||
], | ||
"author": { | ||
"name": "Aral Balkan", | ||
"email": "aral@ind.ie" | ||
}, | ||
"contributors": [], | ||
"bugs": {}, | ||
"directories": { | ||
"lib": "src", | ||
"test": "test/" | ||
}, | ||
"engines": { | ||
"node": "^8.0.0", | ||
"npm": ">= 3.0.0" | ||
}, | ||
"scripts": { | ||
"test": "npm run eslint && npm run mocha", | ||
"eslint": "eslint src/. test/. --config .eslintrc.json", | ||
"start": "node src/", | ||
"mocha": "mocha test/ --recursive --exit" | ||
}, | ||
"dependencies": { | ||
"@feathersjs/configuration": "^1.0.1", | ||
"@feathersjs/errors": "^3.2.0", | ||
"@feathersjs/express": "^1.1.2", | ||
"@feathersjs/feathers": "^3.0.2", | ||
"@feathersjs/socketio": "^3.0.1", | ||
"compression": "^1.7.1", | ||
"cors": "^2.8.4", | ||
"helmet": "^3.9.0", | ||
"serve-favicon": "^2.4.5", | ||
"winston": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^4.13.1", | ||
"mocha": "^4.0.1", | ||
"request": "^2.83.0", | ||
"request-promise": "^4.2.2" | ||
} | ||
} |
public/favicon.ico
0 → 100644
5.4 KB
public/index.html
0 → 100644
This diff is collapsed.
src/app.hooks.js
0 → 100644
src/app.js
0 → 100644
src/channels.js
0 → 100644
src/hooks/logger.js
0 → 100644
src/index.js
0 → 100644
src/middleware/index.js
0 → 100644
src/services/index.js
0 → 100644
test/app.test.js
0 → 100644