boilerplate-backend/package.json
2023-12-01 08:47:14 +01:00

63 lines
2.0 KiB
JSON

{
"name": "boilerplate-backend",
"version": "1.0.0",
"description": "The IT4C Boilerplate for backends",
"main": "build/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/boilerplate-backend.git"
},
"author": {
"name": "Moriz Wahl"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IT4Change/boilerplate-backend/issues"
},
"scripts": {
"watch": "nodemon --watch './**/*.{ts,graphql}' --exec 'node --loader ts-node/esm' src/index.ts",
"dev": "tsc-watch --noClear --onSuccess \"npm run watch\"",
"test:lint": "npm run test:lint:eslint && npm run test:lint:remark",
"test:lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.json,.yml,.yaml --max-warnings 0 --ignore-path .gitignore .",
"test:lint:remark": "remark . --quiet --frail"
},
"dependencies": {
"apollo-server-express": "^3.13.0",
"graphql": "^15.3.0",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.1.0",
"@types/express": "^4.17.21",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vitest": "^0.3.10",
"eslint-plugin-yml": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"remark-cli": "^12.0.0",
"remark-gfm": "^4.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-markdown-style-guide": "^5.1.3",
"remark-preset-lint-recommended": "^6.1.3",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.2"
},
"imports": {
"#types/*": "./src/graphql/types/*"
}
}