mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
We now remove the typeorm from backend and rely solely on the database typeorm. We now can use both activeRecord and dataMapper pattern.
66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "gradido-backend",
|
|
"version": "1.6.1",
|
|
"description": "Gradido unified backend providing an API-Service for Gradido Transactions",
|
|
"main": "src/index.ts",
|
|
"repository": "https://github.com/gradido/gradido/backend",
|
|
"author": "Ulf Gebhardt",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "tsc --build --clean",
|
|
"start": "node build/index.js",
|
|
"dev": "nodemon -w src --ext ts --exec ts-node src/index.ts",
|
|
"lint": "eslint . --ext .js,.ts",
|
|
"CI_workflow_test": "jest --runInBand --coverage ",
|
|
"test": "NODE_ENV=development jest --runInBand --coverage "
|
|
},
|
|
"dependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"apollo-log": "^1.1.0",
|
|
"apollo-server-express": "^2.25.2",
|
|
"apollo-server-testing": "^2.25.2",
|
|
"axios": "^0.21.1",
|
|
"class-validator": "^0.13.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^10.0.0",
|
|
"express": "^4.17.1",
|
|
"graphql": "^15.5.1",
|
|
"jest": "^27.2.4",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"module-alias": "^2.2.2",
|
|
"moment": "^2.29.1",
|
|
"mysql2": "^2.3.0",
|
|
"nodemailer": "^6.6.5",
|
|
"random-bigint": "^0.0.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"sodium-native": "^3.3.0",
|
|
"ts-jest": "^27.0.5",
|
|
"type-graphql": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.12",
|
|
"@types/jsonwebtoken": "^8.5.2",
|
|
"@types/node": "^16.10.3",
|
|
"@types/nodemailer": "^6.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
|
"@typescript-eslint/parser": "^4.28.0",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"nodemon": "^2.0.7",
|
|
"prettier": "^2.3.1",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.3.4"
|
|
},
|
|
"_moduleAliases": {
|
|
"@entity": "../database/build/entity",
|
|
"@dbTools": "../database/build/src"
|
|
}
|
|
}
|