Permalink
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?
FAQ/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a seeder file and made it into a script so that we could quickly populate the database in order to make the presentation easier.
72 lines (72 sloc)
1.94 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "faq", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"engines": { | |
"node": "12.x" | |
}, | |
"scripts": { | |
"start": "nodemon index.js", | |
"acceptance": "jest --coverage --detectOpenHandles", | |
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf", | |
"linter": "node_modules/.bin/eslint .", | |
"test": "jest --coverage --detectOpenHandles", | |
"test-verbose": "jest --coverage --detectOpenHandles --verbose", | |
"unit": "node_modules/.bin/jest --coverage --runInBand tests/unit/", | |
"cucumber": "cucumberTest.sh", | |
"seed": "node core/seeder/seeder.js" | |
}, | |
"jest": { | |
"projects": [ | |
"<rootDir>/jest-test.config.js" | |
] | |
}, | |
"author": "", | |
"license": "ISC", | |
"dependencies": { | |
"bcrypt": "^3.0.6", | |
"bcrypt-promise": "^2.0.0", | |
"dotenv": "^8.2.0", | |
"fs-extra": "^7.0.1", | |
"handlebars": "^4.5.3", | |
"koa": "^2.10.0", | |
"koa-body": "^4.0.8", | |
"koa-bodyparser": "^4.2.1", | |
"koa-route": "^3.2.0", | |
"koa-router": "^7.4.0", | |
"koa-encrypted-session": "^2.1.0", | |
"koa-static": "^5.0.0", | |
"koa-views": "^6.1.5", | |
"markdown": "^0.5.0", | |
"markdownlint-cli": "^0.18.0", | |
"mime-types": "^2.1.22", | |
"mock-fs": "^4.10.3", | |
"mockfs": "^0.1.5", | |
"remark-cli": "^7.0.0", | |
"remark-lint": "^6.0.5", | |
"remark-preset-lint-markdown-style-guide": "^2.1.3", | |
"remark-preset-lint-recommended": "^3.0.3", | |
"sharp": "^0.23.3", | |
"sqlite-async": "^1.0.12", | |
"sqlite3": "^4.1.0" | |
}, | |
"devDependencies": { | |
"cucumber": "^5.1.0", | |
"docdash": "^1.1.1", | |
"eslint": "^5.16.0", | |
"featurebook": "0.0.32", | |
"handlebars-validate": "^0.1.2", | |
"http-status-codes": "^1.3.2", | |
"jest": "^24.1.0", | |
"jest-cucumber": "^2.0.11", | |
"jest-image-snapshot": "^2.11.0", | |
"jest-puppeteer": "^4.3.0", | |
"jsdoc": "^3.6.3", | |
"jsdoc-route-plugin": "^0.1.0", | |
"markdownlint": "^0.17.0", | |
"nodemon": "^1.19.4", | |
"puppeteer": "^1.20.0", | |
"supertest": "^4.0.2" | |
} | |
} |