dbaas
Version:
Database as a service. Expose db to REST and GraphQL.
91 lines (90 loc) • 2.5 kB
JSON
{
"name": "dbaas",
"version": "0.7.1",
"description": "Database as a service. Expose db to REST and GraphQL.",
"keywords": [
"dbaas",
"graphql",
"rest",
"api",
"http"
],
"author": "Mazlan <git@lann.me>",
"license": "GPL-3.0-only",
"engines": {
"node": ">=16.x"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist/**/*.ts",
"dist/**/*.js",
".eslintrc",
"nodemon.dbaas.json",
"tsconfig.base.json",
"README.md"
],
"scripts": {
"lint": "npm-run-all -n -s 'lint:*'",
"lint:pretty": "prettier --loglevel=warn --write . '!**/*.{js,ts}'",
"lint:es": "eslint --ext .js,.ts --fix .",
"build": "run-s -n lint build-ts",
"build-ts": "tsc --pretty",
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo",
"dev-gulp": "nodemon --config nodemon.gulp.json",
"start": "run-s 'build-ts --watch --preserveWatchOutput'",
"watch": "run-s start",
"upgrade-yarn": "yarn set version latest",
"upgrade-sdks": "yarn sdks"
},
"dependencies": {
"@directus/shared": "9.21.2",
"@types/geojson": "7946.0.8",
"@types/pino": "6.3",
"axios": "^0.24.0",
"camelcase": "^6.2.0",
"directus": "9.21.2",
"express": "4.18.2",
"fancy-log": "^1.3.3",
"geojson": "0.5.0",
"gulp": "^4.0.2",
"knex": "2.3.0",
"knex-schema-inspector": "3.0.0",
"lodash": "^4.17.21",
"node-graceful": "^3.1.0",
"nodemon": "^2.0.15",
"pino": "^8.7.0",
"pino-colada": "^2.2.2",
"vue": "3.2.22",
"vue-i18n": "9.1.9",
"vue-router": "4.0.12"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fancy-log": "^1.3.1",
"@types/gulp": "^4.0.9",
"@types/jest": "^27.0.3",
"@types/lodash": "^4",
"@types/node": "^18.13.0",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@yarnpkg/sdks": "^2.5.1-rc.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.8.0",
"typescript": "^4.9.5"
},
"packageManager": "yarn@3.4.1"
}