mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-13 10:25:49 +00:00
52 lines
1.6 KiB
JSON
52 lines
1.6 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:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.json,.yml,.yaml --max-warnings 0 --ignore-path .gitignore ."
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-express": "^3.13.0",
|
|
"graphql": "^16.8.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",
|
|
"ts-node": "^10.9.1",
|
|
"tsc": "^2.0.4",
|
|
"tsc-watch": "^6.0.4",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|