license-server/package.json

73 lines
1.8 KiB
JSON

{
"name": "node-koa-realworld-starter-kit",
"version": "1.0.0",
"description": "conduit on koa.js",
"main": "index.js",
"repository": "git@github.com:dimonnwc3/node-koa-realworld-starter-kit.git",
"author": "Dmitrii Solovev <dimonnwc3@gmail.com>",
"license": "ISC",
"scripts": {
"start": "cross-env NODE_PATH=src node src/bin/server.js",
"db:schema": "knex migrate:latest --knexfile src/config/knexfile.js",
"db:load": "knex seed:run --knexfile src/config/knexfile.js",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "jest",
"test:watch": "jest --watch"
},
"pre-commit": [
"lint"
],
"dependencies": {
"bcrypt": "^2.0.1",
"cross-env": "^5.1.4",
"date-fns": "^1.29.0",
"dotenv": "^5.0.1",
"es6-denodeify": "^0.1.5",
"http-shutdown": "^1.2.0",
"humps": "^2.0.1",
"join-js": "^1.0.0",
"jsonwebtoken": "^8.2.1",
"kcors": "^2.2.1",
"knex": "^0.14.6",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^4.0.0",
"koa-jwt": "^3.3.1",
"koa-logger": "^3.2.0",
"koa-response-time": "^2.0.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.10",
"mysql": "^2.15.0",
"pg": "^7.4.1",
"qs": "^6.5.1",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"slug": "^0.9.1",
"uuid": "^3.2.1",
"validator": "^9.4.1",
"winston": "^2.4.2",
"yup": "^0.24.1"
},
"devDependencies": {
"faker": "^4.1.0",
"jest": "^22.4.3",
"pre-commit": "^1.2.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](docs|node_modules)[/\\\\]"
],
"bail": true,
"testMatch": [
"**/__tests__/**/*index.js?(x)",
"**/?(*.)(spec|test)index.js?(x)"
],
"modulePaths": [
"src"
]
}
}