Skip to content
Permalink
35ce5fa0d0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
61 lines (61 sloc) 1.75 KB
{
"name": "frequently-asked-questions",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"check": "npm run format && npm run lint",
"dev": "nodemon index.js",
"format": "prettier --write \"**/*.+(js|yml|yaml|json)\"",
"lint": "eslint --fix .",
"start": "node index.js",
"test": "node_modules/.bin/jest --coverage --detectOpenHandles",
"test_verbose": "node_modules/.bin/jest --coverage --detectOpenHandles --verbose",
"docs": "node_modules/.bin/jsdoc ./ -c jsdoc.conf -R README.md",
"acceptance": "bash cucumberTest.sh"
},
"devDependencies": {
"cucumber": "^6.0.5",
"docdash": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "2.3.0",
"jsdoc": "^3.6.3",
"jsdoc-route-plugin": "^0.1.0",
"nodemon": "1.19.0",
"prettier": "1.17.1",
"puppeteer": "^2.0.0"
},
"dependencies": {
"@koa/cors": "2.2.3",
"bcrypt": "^3.0.6",
"bcrypt-promise": "^2.0.0",
"bootstrap": "^4.3.1",
"dotenv": "8.0.0",
"handlebars": "^4.5.3",
"jest": "^24.9.0",
"joi": "14.3.1",
"koa": "^2.7.0",
"koa-body": "^4.1.1",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-helmet": "4.1.0",
"koa-logger": "3.2.0",
"koa-pug": "^4.0.2",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"mock-fs": "^4.10.3",
"shortid": "^2.2.15",
"sqlite-async": "^1.0.12",
"uuid": "3.3.2"
}
}