mirror of
https://github.com/zkitter/groups.git
synced 2026-01-08 20:47:56 -05:00
* refactor: define separate routers. Update openapi spec (#38) * refactor: serve openapi.json on /api-docs * refactor: Define separate routers * Update openapi spec * fix Docker build (#39) - Type explicitly Router and Express app - Fix module resolution (module-alias)
90 lines
2.4 KiB
JSON
90 lines
2.4 KiB
JSON
{
|
|
"name": "ts-template",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"nps": "nps",
|
|
"prepare": "is-docker || husky install",
|
|
"setup": "pnpm 2> /dev/null || npm i -g pnpm && pnpm i",
|
|
"start": "NODE_ENV=production node -r module-alias/register dist"
|
|
},
|
|
"author": "r1oga",
|
|
"license": "ISC",
|
|
"_moduleAliases": {
|
|
"#": "dist/constants",
|
|
"db": "dist/db",
|
|
"repositories": "dist/repositories",
|
|
"services": "dist/services",
|
|
"utils": "dist/utils"
|
|
},
|
|
"devDependencies": {
|
|
"@automock/jest": "^1.0.0",
|
|
"@faker-js/faker": "^7.6.0",
|
|
"@jackfranklin/test-data-bot": "^2.0.0",
|
|
"@jest-mock/express": "^2.0.1",
|
|
"@r1oga/eslint-config": "^1.1.6",
|
|
"@r1oga/prettier-config": "^1.1.8",
|
|
"@types/express": "^4.17.15",
|
|
"@types/jest": "^29.2.3",
|
|
"@types/node": "^18.11.18",
|
|
"@types/serve-favicon": "^2.5.3",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/swagger-ui-express": "^4.1.3",
|
|
"@types/yargs": "^17.0.19",
|
|
"barrelsby": "^2.5.1",
|
|
"concurrently": "^7.6.0",
|
|
"dotenv-cli": "^7.0.0",
|
|
"husky": "^8.0.2",
|
|
"is-ci": "^3.0.1",
|
|
"jest": "^29.3.1",
|
|
"jest-chain": "^1.1.6",
|
|
"jest-extended": "^3.2.3",
|
|
"jest-mock-extended": "^3.0.1",
|
|
"jest-runner-eslint": "^1.1.0",
|
|
"jest-runner-prettier": "^1.0.0",
|
|
"jest-silent-reporter": "^0.5.0",
|
|
"jest-watch-select-projects": "^2.0.0",
|
|
"jest-watch-typeahead": "^2.2.1",
|
|
"lint-staged": "^13.1.0",
|
|
"nps": "^5.10.0",
|
|
"prisma": "^4.9.0",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-node-dev": "^2.0.0",
|
|
"tsconfig-paths": "^4.1.0",
|
|
"typescript": "^4.9.4",
|
|
"yargs": "^17.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"jest-runner-eslint": {
|
|
"cliOptions": {
|
|
"ignorePath": "./.eslintignore"
|
|
}
|
|
},
|
|
"jest-runner-tsc": {
|
|
"tsconfigPath": "./tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/core": "^4.2.0",
|
|
"@octokit/graphql": "^5.0.5",
|
|
"@octokit/plugin-paginate-graphql": "^2.0.1",
|
|
"@prisma/client": "^4.9.0",
|
|
"@types/cors": "^2.8.13",
|
|
"cors": "^2.8.5",
|
|
"cross-fetch": "^3.1.5",
|
|
"express": "^4.18.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"express-validator": "^6.14.2",
|
|
"is-docker": "^3.0.0",
|
|
"module-alias": "^2.2.2",
|
|
"reflect-metadata": "^0.1.13",
|
|
"serve-favicon": "^2.5.0",
|
|
"swagger-ui-express": "^4.6.0",
|
|
"tslib": "^2.5.0",
|
|
"typedi": "^0.10.0"
|
|
}
|
|
}
|