91 lines
2.2 KiB
JSON
91 lines
2.2 KiB
JSON
{
|
|
"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:seed:user": "ts-node ./bin/database/seed-user.ts",
|
|
"db:drop": "ts-node ./bin/database/drop.ts",
|
|
"db:migration:create": "knex migrate:make",
|
|
"db:rollback": "knex migrate:rollback",
|
|
"db:migrate": "knex migrate:latest"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/oauth-methods": "^1.2.6",
|
|
"axios": "0.24.0",
|
|
"bcrypt": "^5.0.1",
|
|
"cors": "^2.8.5",
|
|
"crypto-js": "^4.1.1",
|
|
"debug": "~2.6.9",
|
|
"discord.js": "13.2.0",
|
|
"dotenv": "^10.0.0",
|
|
"express": "~4.16.1",
|
|
"express-graphql": "^0.12.0",
|
|
"flickr-sdk": "3.10.0",
|
|
"googleapis": "89.0.0",
|
|
"graphql-type-json": "^0.3.2",
|
|
"http-errors": "~1.6.3",
|
|
"knex": "^0.95.11",
|
|
"morgan": "^1.10.0",
|
|
"nodemailer": "6.7.0",
|
|
"objection": "^2.2.17",
|
|
"pg": "^8.7.1",
|
|
"twilio": "3.70.0",
|
|
"twitch-js": "2.0.0-beta.42",
|
|
"twitter-api-v2": "1.6.0",
|
|
"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/app.ts",
|
|
"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/crypto-js": "^4.0.2",
|
|
"@types/express": "^4.17.13",
|
|
"@types/http-errors": "^1.8.1",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/node": "^16.10.2",
|
|
"@types/nodemailer": "^6.4.4",
|
|
"@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"
|
|
]
|
|
}
|
|
}
|