mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-12 15:25:49 +00:00
65 lines
2.1 KiB
JSON
65 lines
2.1 KiB
JSON
{
|
|
"name": "gradido-federation",
|
|
"version": "1.21.0",
|
|
"description": "Gradido federation module providing Gradido-Hub-Federation and versioned API for inter community communication",
|
|
"main": "src/index.ts",
|
|
"repository": "https://github.com/gradido/gradido/federation",
|
|
"author": "Claus-Peter Huebner",
|
|
"license": "Apache-2.0",
|
|
"private": false,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "tsc --build --clean",
|
|
"start": "cross-env TZ=UTC TS_NODE_BASEURL=./build node -r tsconfig-paths/register build/src/index.js",
|
|
"test": "cross-env TZ=UTC NODE_ENV=development jest --runInBand --forceExit --detectOpenHandles",
|
|
"dev": "cross-env TZ=UTC nodemon -w src --ext ts --exec ts-node -r dotenv/config -r tsconfig-paths/register src/index.ts",
|
|
"lint": "eslint --max-warnings=0 --ext .js,.ts ."
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-express": "^2.25.2",
|
|
"class-validator": "^0.13.2",
|
|
"cors": "2.8.5",
|
|
"cross-env": "^7.0.3",
|
|
"decimal.js-light": "^2.5.1",
|
|
"dotenv": "10.0.0",
|
|
"express": "4.17.1",
|
|
"graphql": "15.5.1",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"log4js": "^6.7.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"type-graphql": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "4.17.12",
|
|
"@types/jest": "27.0.2",
|
|
"@types/lodash.clonedeep": "^4.5.6",
|
|
"@types/node": "^16.10.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
"@typescript-eslint/parser": "^5.57.1",
|
|
"apollo-server-testing": "2.25.2",
|
|
"eslint": "^8.37.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-import-resolver-typescript": "^3.5.4",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-n": "^15.7.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-security": "^1.7.1",
|
|
"eslint-plugin-type-graphql": "^1.0.0",
|
|
"jest": "^27.2.4",
|
|
"nodemon": "^2.0.7",
|
|
"prettier": "^2.3.1",
|
|
"ts-jest": "27.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.1.1",
|
|
"typescript": "^4.3.4"
|
|
},
|
|
"nodemonConfig": {
|
|
"ignore": [
|
|
"**/*.test.ts"
|
|
]
|
|
}
|
|
}
|