Files
wiki/package.json

222 lines
5.9 KiB
JSON
Raw Normal View History

2016-08-16 20:56:55 -04:00
{
"name": "wiki",
2017-09-29 22:32:43 -04:00
"version": "2.0.0",
2016-08-16 20:56:55 -04:00
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
2017-07-21 17:40:26 -04:00
"main": "wiki.js",
2016-08-16 20:56:55 -04:00
"scripts": {
2017-02-14 02:17:25 -05:00
"start": "node wiki start",
2017-02-14 15:27:08 -05:00
"stop": "node wiki stop",
2017-05-13 17:03:32 -04:00
"restart": "node wiki restart",
"build": "node dev/fuse --build",
2017-12-24 00:34:47 -05:00
"dev:client": "node dev/fuse --dev",
"dev:server": "nodemon",
"dev:server:alt": "node-dev server --no-deps --respawn --no-notify",
2017-10-29 21:36:05 -04:00
"test": "eslint --ext .js,.vue . && jest"
2016-08-16 20:56:55 -04:00
},
"bin": {
"wiki": "wiki.js"
},
2016-08-16 20:56:55 -04:00
"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": {
2017-12-16 23:41:16 -05:00
"node": ">=8.9.3"
2016-08-16 20:56:55 -04:00
},
"dependencies": {
2017-12-24 00:34:47 -05:00
"apollo-server-express": "1.3.2",
2017-08-06 21:14:20 -04:00
"auto-load": "3.0.0",
"axios": "0.17.1",
2017-08-06 21:14:20 -04:00
"bcryptjs-then": "1.0.1",
"bluebird": "3.5.1",
2017-09-29 22:32:43 -04:00
"body-parser": "1.18.2",
2017-10-28 14:17:14 -04:00
"bugsnag": "2.0.1",
2017-12-16 23:41:16 -05:00
"bull": "3.3.7",
2017-08-06 21:14:20 -04:00
"bunyan": "1.8.12",
"cheerio": "1.0.0-rc.2",
"child-process-promise": "2.2.1",
"chokidar": "1.7.0",
2017-09-29 22:32:43 -04:00
"compression": "1.7.1",
2017-08-06 21:14:20 -04:00
"connect-flash": "0.1.1",
2017-09-29 22:32:43 -04:00
"connect-redis": "3.3.2",
2017-08-06 21:14:20 -04:00
"cookie-parser": "1.4.3",
2017-10-28 14:17:14 -04:00
"diff2html": "2.3.2",
"dotize": "^0.2.0",
2017-08-06 21:14:20 -04:00
"execa": "0.8.0",
2017-10-28 14:17:14 -04:00
"express": "4.16.2",
"express-brute": "1.0.1",
2017-08-06 21:14:20 -04:00
"express-brute-redis": "0.0.1",
2017-09-29 22:32:43 -04:00
"express-session": "1.15.6",
2017-12-16 23:41:16 -05:00
"file-type": "7.4.0",
2017-08-06 21:14:20 -04:00
"filesize.js": "1.0.2",
2017-12-16 23:41:16 -05:00
"follow-redirects": "1.2.6",
"fs-extra": "5.0.0",
2017-08-06 21:14:20 -04:00
"git-wrapper2-promise": "0.2.9",
2017-12-24 00:34:47 -05:00
"graphql": "0.12.3",
"graphql-tools": "2.14.1",
2017-08-06 21:14:20 -04:00
"highlight.js": "9.12.0",
2017-12-16 23:41:16 -05:00
"i18next": "10.2.1",
"i18next-express-middleware": "1.0.9",
"i18next-localstorage-cache": "1.1.1",
2017-08-06 21:14:20 -04:00
"i18next-node-fs-backend": "1.0.0",
2017-12-16 23:41:16 -05:00
"image-size": "0.6.2",
"ioredis": "3.2.2",
2017-08-06 21:14:20 -04:00
"jimp": "0.2.28",
2017-09-29 22:32:43 -04:00
"js-yaml": "3.10.0",
2017-10-28 14:17:14 -04:00
"jsonwebtoken": "8.1.0",
2017-12-16 23:41:16 -05:00
"klaw": "2.1.1",
2017-08-06 21:14:20 -04:00
"lodash": "4.17.4",
"markdown-it": "8.4.0",
2017-08-06 21:14:20 -04:00
"markdown-it-abbr": "1.0.4",
"markdown-it-anchor": "4.0.0",
2017-09-29 22:32:43 -04:00
"markdown-it-attrs": "1.2.0",
2017-08-06 21:14:20 -04:00
"markdown-it-emoji": "1.4.0",
"markdown-it-expand-tabs": "1.0.12",
"markdown-it-external-links": "0.0.6",
2017-08-06 21:14:20 -04:00
"markdown-it-footnote": "3.0.1",
"markdown-it-mathjax": "2.0.0",
2017-10-28 14:17:14 -04:00
"markdown-it-task-lists": "2.1.0",
2017-09-29 22:32:43 -04:00
"mathjax-node": "1.2.1",
"mime-types": "2.1.17",
2017-12-24 00:34:47 -05:00
"moment": "2.20.1",
"moment-timezone": "0.5.14",
2017-12-16 23:41:16 -05:00
"mongodb": "3.0.0-rc0",
2017-08-06 21:14:20 -04:00
"multer": "1.3.0",
"node-2fa": "1.1.2",
"node-graceful": "0.2.3",
"ora": "1.3.0",
2017-08-18 21:21:29 -04:00
"passport": "0.4.0",
"passport-azure-ad-oauth2": "0.0.4",
2017-08-06 21:14:20 -04:00
"passport-facebook": "2.1.1",
2017-09-29 22:32:43 -04:00
"passport-github2": "0.1.11",
2017-08-06 21:14:20 -04:00
"passport-google-oauth20": "1.0.0",
"passport-ldapauth": "2.0.0",
"passport-local": "1.0.0",
2017-04-02 19:56:47 -04:00
"passport-slack": "0.0.7",
2017-08-06 21:14:20 -04:00
"passport-windowslive": "1.0.2",
2017-12-16 23:41:16 -05:00
"pg": "6.4.2",
2017-08-06 21:14:20 -04:00
"pg-hstore": "2.3.2",
2017-12-16 23:41:16 -05:00
"pg-promise": "7.3.2",
"pm2": "2.9.1",
2017-09-10 01:41:22 -04:00
"pug": "2.0.0-rc.4",
2017-10-07 22:44:35 -04:00
"qr-image": "3.2.0",
2017-08-06 21:14:20 -04:00
"read-chunk": "2.1.0",
2017-08-18 21:21:29 -04:00
"remove-markdown": "0.2.2",
2017-09-29 22:32:43 -04:00
"request": "2.83.0",
"request-promise": "4.2.2",
2017-08-06 21:14:20 -04:00
"semver": "5.4.1",
2017-12-24 00:34:47 -05:00
"sequelize": "4.28.6",
2017-09-29 22:32:43 -04:00
"serve-favicon": "2.4.5",
2017-08-06 21:14:20 -04:00
"simplemde": "1.11.2",
"stream-to-promise": "2.2.0",
2017-12-24 00:34:47 -05:00
"tar": "4.2.0",
2017-08-06 21:14:20 -04:00
"through2": "2.0.3",
2017-10-22 13:30:16 -04:00
"uuid": "3.1.0",
2017-12-16 23:41:16 -05:00
"validator": "9.2.0",
2017-08-06 21:14:20 -04:00
"validator-as-promised": "1.0.2",
"winston": "2.4.0",
2017-10-28 14:17:14 -04:00
"yargs": "10.0.3"
2016-08-16 20:56:55 -04:00
},
"devDependencies": {
2017-08-06 21:14:20 -04:00
"@glimpse/glimpse": "0.22.15",
2017-12-16 23:41:16 -05:00
"@panter/vue-i18next": "0.9.1",
"apollo-client-preset": "1.0.5",
"autoprefixer": "7.2.3",
2017-08-18 21:21:29 -04:00
"babel-cli": "6.26.0",
2017-10-07 22:44:35 -04:00
"babel-core": "6.26.0",
2017-12-24 00:34:47 -05:00
"babel-jest": "22.0.4",
2017-10-28 14:17:14 -04:00
"babel-preset-env": "1.6.1",
2017-08-06 21:14:20 -04:00
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
2017-12-16 23:41:16 -05:00
"brace": "0.11.0",
2017-08-06 21:14:20 -04:00
"colors": "1.1.2",
"consolidate": "0.15.0",
2017-12-16 23:41:16 -05:00
"eslint": "4.13.1",
"eslint-config-requarks": "1.0.7",
2017-12-16 23:41:16 -05:00
"eslint-config-standard": "11.0.0-beta.0",
2017-10-28 14:17:14 -04:00
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
2017-08-06 21:14:20 -04:00
"eslint-plugin-standard": "3.0.1",
2017-10-29 21:36:05 -04:00
"eslint-plugin-vue": "3.13.1",
"fuse-box": "2.5.0-beta.1",
2017-12-24 00:34:47 -05:00
"graphql-tag": "^2.6.1",
"i18next-xhr-backend": "1.5.0",
2017-12-24 00:34:47 -05:00
"jest": "22.0.4",
"jest-junit": "3.4.1",
2017-10-28 14:17:14 -04:00
"js-cookie": "2.2.0",
2017-12-24 00:34:47 -05:00
"node-dev": "3.1.3",
2017-12-16 23:41:16 -05:00
"node-sass": "4.7.2",
2017-12-24 00:34:47 -05:00
"nodemon": "1.14.3",
"postcss-selector-parser": "3.1.1",
"pug-lint": "2.5.0",
2017-08-06 21:14:20 -04:00
"twemoji-awesome": "1.0.6",
2017-12-16 23:41:16 -05:00
"typescript": "2.6.2",
"uglify-es": "3.2.2",
"vee-validate": "2.0.0-rc.27",
2017-12-24 00:34:47 -05:00
"vue": "2.5.13",
2017-12-16 23:41:16 -05:00
"vue-clipboards": "1.2.0",
"vue-hot-reload-api": "2.2.4",
2017-09-29 22:32:43 -04:00
"vue-lodash": "1.0.4",
2017-10-28 14:17:14 -04:00
"vue-material": "^0.8.1",
2017-12-24 00:34:47 -05:00
"vue-resource": "1.3.5",
2017-10-28 14:17:14 -04:00
"vue-simple-breakpoints": "1.0.3",
2017-12-24 00:34:47 -05:00
"vue-template-compiler": "2.5.13",
2017-10-28 14:17:14 -04:00
"vue-template-es2015-compiler": "1.6.0",
"vuex": "3.0.1",
2017-12-16 23:41:16 -05:00
"vuex-persistedstate": "2.4.2"
2017-02-08 20:52:37 -05:00
},
2017-03-26 22:07:40 -04:00
"jest": {
2017-10-14 23:56:51 -04:00
"testResultsProcessor": "./node_modules/jest-junit",
2017-03-26 22:07:40 -04:00
"collectCoverage": false,
"testMatch": [
"**/test/**/*.js?(x)",
"**/?(*.)(spec|test).js?(x)"
],
"verbose": true
},
2017-10-14 23:56:51 -04:00
"jest-junit": {
"suiteName": "jest test",
"output": "./test-results/junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}"
},
2017-12-24 00:34:47 -05:00
"nodemonConfig": {
"exec": "node server --dev",
"ignore": [
"assets/",
"client/",
"data/",
"dev/",
"test/",
"test-results/"
],
"ext": "js json graphql",
"watch": [
"server"
],
"env": {
"NODE_ENV": "development"
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/wikijs",
"logo": "https://opencollective.com/opencollective/logo.txt"
2017-07-08 20:35:53 -04:00
}
2017-06-09 22:35:54 -04:00
}