Base Project Files
Showing
.babelrc
0 → 100644
.gitattributes
0 → 100644
.snyk
0 → 100644
.travis.yml
0 → 100644
config.sample.yml
0 → 100644
gulpfile.js
0 → 100644
inch.json
0 → 100644
locales/en/common.js
0 → 100644
locales/fr/common.js
0 → 100644
middlewares/auth.js
0 → 100644
middlewares/security.js
0 → 100644
models/config.js
0 → 100644
models/db/user.js
0 → 100644
models/mongodb.js
0 → 100644
models/redis.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "wiki", | ||
"version": "1.0.0", | ||
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown", | ||
"main": "server.js", | ||
"scripts": { | ||
"start": "node server", | ||
"dev": "gulp", | ||
"test": "snyk test && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./tests/index.js && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Requarks/wiki.git" | ||
}, | ||
"keywords": [ | ||
"wiki", | ||
"wikis", | ||
"docs", | ||
"documentation", | ||
"markdown", | ||
"guides" | ||
], | ||
"author": "Nicolas Giard", | ||
"license": "AGPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/Requarks/wiki/issues" | ||
}, | ||
"homepage": "https://github.com/Requarks/wiki#readme", | ||
"engines": { | ||
"node": ">=4.4.5" | ||
}, | ||
"dependencies": { | ||
"auto-load": "^2.1.0", | ||
"bluebird": "^3.4.1", | ||
"body-parser": "^1.15.2", | ||
"compression": "^1.6.2", | ||
"connect-flash": "^0.1.1", | ||
"connect-redis": "^3.1.0", | ||
"cookie-parser": "^1.4.3", | ||
"express": "^4.14.0", | ||
"express-brute": "^0.7.0-beta.0", | ||
"express-brute-redis": "0.0.1", | ||
"express-session": "^1.14.0", | ||
"express-validator": "^2.20.8", | ||
"gridlex": "^2.1.1", | ||
"i18next": "^3.4.1", | ||
"i18next-express-middleware": "^1.0.1", | ||
"i18next-node-fs-backend": "^0.1.2", | ||
"ioredis": "^2.3.0", | ||
"js-yaml": "^3.6.1", | ||
"lodash": "^4.15.0", | ||
"markdown-it": "^7.0.1", | ||
"moment": "^2.14.1", | ||
"moment-timezone": "^0.5.5", | ||
"mongoose": "^4.5.9", | ||
"mongoose-delete": "^0.3.4", | ||
"node-bcrypt": "0.0.1", | ||
"passport": "^0.3.2", | ||
"passport-local": "^1.0.0", | ||
"pug": "^2.0.0-beta5", | ||
"serve-favicon": "^2.3.0", | ||
"simplemde": "^1.11.2", | ||
"validator": "^5.5.0", | ||
"validator-as-promised": "^1.0.2", | ||
"winston": "^2.2.0" | ||
}, | ||
"devDependencies": { | ||
"babel-preset-es2015": "^6.13.2", | ||
"chai": "^3.5.0", | ||
"chai-as-promised": "^5.3.0", | ||
"codacy-coverage": "^2.0.0", | ||
"font-awesome": "^4.6.3", | ||
"gridlex": "^2.1.1", | ||
"gulp": "^3.9.1", | ||
"gulp-babel": "^6.1.2", | ||
"gulp-clean-css": "^2.0.12", | ||
"gulp-concat": "^2.6.0", | ||
"gulp-gzip": "^1.4.0", | ||
"gulp-include": "^2.3.1", | ||
"gulp-nodemon": "^2.1.0", | ||
"gulp-plumber": "^1.1.0", | ||
"gulp-sass": "^2.3.2", | ||
"gulp-tar": "^1.9.0", | ||
"gulp-uglify": "^2.0.0", | ||
"gulp-zip": "^3.2.0", | ||
"istanbul": "^0.4.4", | ||
"jquery": "^3.1.0", | ||
"merge-stream": "^1.0.0", | ||
"mocha": "^3.0.2", | ||
"mocha-lcov-reporter": "^1.2.0", | ||
"nodemon": "^1.10.0", | ||
"snyk": "^1.18.0", | ||
"vue": "^1.0.26" | ||
} | ||
} |
server.js
0 → 100644
tests/index.js
0 → 100644
wiki.sublime-project
0 → 100644
Please
register
or
sign in
to comment