133 lines
3.6 KiB
JSON
133 lines
3.6 KiB
JSON
{
|
|
"name": "@automatisch/backend",
|
|
"version": "0.5.0",
|
|
"license": "See LICENSE file",
|
|
"description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --exit-child src/server.ts",
|
|
"worker": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/worker.ts",
|
|
"build": "tsc && yarn copy-statics",
|
|
"build:watch": "nodemon --watch 'src/**/*.ts' --watch 'bin/**/*.ts' --exec yarn build --ext ts",
|
|
"start": "node dist/src/server.js",
|
|
"test": "ava",
|
|
"lint": "eslint . --ignore-path ../../.eslintignore",
|
|
"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",
|
|
"copy-statics": "copyfiles src/**/*.{graphql,json,svg} dist",
|
|
"prepack": "yarn build",
|
|
"prebuild": "rm -rf ./dist"
|
|
},
|
|
"dependencies": {
|
|
"@automatisch/web": "^0.5.0",
|
|
"@bull-board/express": "^3.10.1",
|
|
"@graphql-tools/graphql-file-loader": "^7.3.4",
|
|
"@graphql-tools/load": "^7.5.2",
|
|
"@rudderstack/rudder-sdk-node": "^1.1.2",
|
|
"@types/luxon": "^2.3.1",
|
|
"ajv-formats": "^2.1.1",
|
|
"axios": "0.24.0",
|
|
"bcrypt": "^5.0.1",
|
|
"bullmq": "^3.0.0",
|
|
"copyfiles": "^2.4.1",
|
|
"cors": "^2.8.5",
|
|
"crypto-js": "^4.1.1",
|
|
"debug": "~2.6.9",
|
|
"dotenv": "^10.0.0",
|
|
"express": "~4.18.2",
|
|
"express-basic-auth": "^1.2.1",
|
|
"express-graphql": "^0.12.0",
|
|
"fast-xml-parser": "^4.0.11",
|
|
"graphql-middleware": "^6.1.15",
|
|
"graphql-shield": "^7.5.0",
|
|
"graphql-tools": "^8.2.0",
|
|
"graphql-type-json": "^0.3.2",
|
|
"http-errors": "~1.6.3",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"knex": "^2.4.0",
|
|
"lodash.get": "^4.4.2",
|
|
"luxon": "2.5.2",
|
|
"morgan": "^1.10.0",
|
|
"multer": "1.4.5-lts.1",
|
|
"nodemailer": "6.7.0",
|
|
"oauth-1.0a": "^2.2.6",
|
|
"objection": "^3.0.0",
|
|
"pg": "^8.7.1",
|
|
"winston": "^3.7.1"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "automatisch contributors",
|
|
"url": "https://github.com/automatisch/automatisch/graphs/contributors"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/automatisch/automatisch#readme",
|
|
"main": "dist/src/app",
|
|
"directories": {
|
|
"bin": "bin",
|
|
"src": "src",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"src",
|
|
"server.js",
|
|
"server.d.ts",
|
|
"worker.js",
|
|
"worker.d.ts",
|
|
"logger.js",
|
|
"logger.d.ts",
|
|
"database.js",
|
|
"database.d.ts",
|
|
"database-utils.js",
|
|
"database-utils.d.ts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/automatisch/automatisch.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/automatisch/automatisch/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@automatisch/types": "^0.5.0",
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/bull": "^3.15.8",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/crypto-js": "^4.0.2",
|
|
"@types/express": "^4.17.15",
|
|
"@types/http-errors": "^1.8.1",
|
|
"@types/jsonwebtoken": "^8.5.8",
|
|
"@types/lodash.get": "^4.4.6",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/multer": "1.4.7",
|
|
"@types/node": "^16.10.2",
|
|
"@types/nodemailer": "^6.4.4",
|
|
"@types/pg": "^8.6.1",
|
|
"@types/pino": "^7.0.5",
|
|
"ava": "^3.15.0",
|
|
"nodemon": "^2.0.13",
|
|
"sinon": "^11.1.2",
|
|
"ts-node": "^10.2.1",
|
|
"ts-node-dev": "^1.1.8"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*"
|
|
],
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|