mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-12 18:05:49 +00:00
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.5.2 to 5.5.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
97 lines
3.1 KiB
JSON
97 lines
3.1 KiB
JSON
{
|
|
"name": "boilerplate-backend",
|
|
"version": "1.0.0",
|
|
"description": "The IT4C Boilerplate for backends",
|
|
"main": "build/index.ts",
|
|
"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": {
|
|
"build": "tsc",
|
|
"start": "TZ=UTC TS_NODE_BASEURL=./build node -r tsconfig-paths/register build/src/index.js",
|
|
"dev": "TZ=UTC nodemon -w src --ext ts,json --exec ts-node -r tsconfig-paths/register src/index.ts",
|
|
"db:migrate": "TZ=UTC npx prisma migrate dev",
|
|
"db:reset": "TZ=UTC npx prisma migrate reset --force",
|
|
"db:seed": "TZ=UTC npx prisma db seed",
|
|
"test:lint": "npm run test:lint:eslint && npm run test:lint:remark",
|
|
"test:lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.json,.yml,.yaml --max-warnings 0 .",
|
|
"test:lint:remark": "remark . --quiet --frail",
|
|
"test:unit": "TZ=UTC jest --runInBand --forceExit --detectOpenHandles",
|
|
"test": "npm run test:lint && npm run test:unit",
|
|
"docs:dev": "vuepress dev .",
|
|
"docs:build": "vuepress build .",
|
|
"update": "npx npm-check-updates"
|
|
},
|
|
"prisma": {
|
|
"seed": "ts-node prisma/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/server": "^4.10.4",
|
|
"@prisma/client": "^5.16.1",
|
|
"@vuepress/theme-default": "^2.0.0-rc.37",
|
|
"graphql": "^16.9.0",
|
|
"graphql-scalars": "^1.23.0",
|
|
"prisma": "^5.16.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"type-graphql": "^2.0.0-rc.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.14.9",
|
|
"@typescript-eslint/eslint-plugin": "^7.13.0",
|
|
"@typescript-eslint/parser": "^7.13.0",
|
|
"@vuepress/bundler-vite": "^2.0.0-rc.9",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"eslint-plugin-n": "^16.6.2",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-promise": "^6.2.0",
|
|
"eslint-plugin-security": "^3.0.1",
|
|
"eslint-plugin-type-graphql": "^1.0.0",
|
|
"eslint-plugin-yml": "^1.14.0",
|
|
"jest": "^29.7.0",
|
|
"nodemon": "^3.1.4",
|
|
"prettier": "^3.3.2",
|
|
"remark-cli": "^12.0.1",
|
|
"remark-gfm": "^4.0.0",
|
|
"remark-preset-lint-consistent": "^6.0.0",
|
|
"remark-preset-lint-markdown-style-guide": "^6.0.0",
|
|
"remark-preset-lint-recommended": "^7.0.0",
|
|
"ts-jest": "^29.1.5",
|
|
"ts-node": "^10.9.2",
|
|
"tsc-watch": "^6.2.0",
|
|
"typescript": "^5.5.3",
|
|
"vuepress": "^2.0.0-rc.9"
|
|
},
|
|
"imports": {
|
|
"#graphql/*": "./src/graphql/*",
|
|
"#src/*": "./src/*",
|
|
"#test/*": "./test/*",
|
|
"#types/*": "./src/graphql/types/*"
|
|
},
|
|
"engines": {
|
|
"node": ">=21"
|
|
},
|
|
"overrides": {
|
|
"eslint-plugin-type-graphql": {
|
|
"@typescript-eslint/parser": "$@typescript-eslint/parser",
|
|
"eslint": "$eslint"
|
|
}
|
|
}
|
|
}
|