{ "name": "@automatisch/backend", "version": "0.1.0", "description": "> TODO: description", "scripts": { "dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts", "build": "tsc", "start": "node dist/index.js", "test": "ava", "db:create": "ts-node ./bin/database/create.ts", "db:drop": "ts-node ./bin/database/drop.ts", "db:migration:create": "knex migrate:make", "db:migrate": "knex migrate:latest" }, "dependencies": { "bcrypt": "^5.0.1", "cors": "^2.8.5", "debug": "~2.6.9", "dotenv": "^10.0.0", "express": "~4.16.1", "express-graphql": "^0.12.0", "http-errors": "~1.6.3", "knex": "^0.95.11", "morgan": "^1.10.0", "objection": "^2.2.17", "pg": "^8.7.1", "winston": "^3.3.3" }, "contributors": [ { "name": "automatisch contributors", "url": "https://github.com/automatisch/automatisch/graphs/contributors" } ], "homepage": "https://github.com/automatisch/automatisch#readme", "main": "src/backend.js", "directories": { "src": "src", "test": "__tests__" }, "files": [ "src" ], "repository": { "type": "git", "url": "git+https://github.com/automatisch/automatisch.git" }, "bugs": { "url": "https://github.com/automatisch/automatisch/issues" }, "devDependencies": { "@types/bcrypt": "^5.0.0", "@types/cors": "^2.8.12", "@types/express": "^4.17.13", "@types/http-errors": "^1.8.1", "@types/morgan": "^1.9.3", "@types/node": "^16.10.2", "@types/pg": "^8.6.1", "ava": "^3.15.0", "nodemon": "^2.0.13", "sinon": "^11.1.2", "ts-node": "^10.2.1" }, "ava": { "files": [ "test/**/*" ], "extensions": [ "ts" ], "require": [ "ts-node/register" ] } }