mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "gradido-backend",
|
|
"version": "1.6.5",
|
|
"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/src/index.js",
|
|
"dev": "nodemon -w src --ext ts --exec ts-node src/index.ts",
|
|
"lint": "eslint --max-warnings=0 --ext .js,.ts .",
|
|
"test": "TZ=UTC NODE_ENV=development jest --runInBand --coverage --forceExit --detectOpenHandles"
|
|
},
|
|
"dependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/lodash.clonedeep": "^4.5.6",
|
|
"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",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"module-alias": "^2.2.2",
|
|
"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"
|
|
}
|
|
}
|