93 lines
2.8 KiB
JSON
93 lines
2.8 KiB
JSON
{
|
|
"name": "@coopenomics/notificator2",
|
|
"version": "1.0.0",
|
|
"description": "NestJS application for managing Novu workflows and push notifications",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:cov": "jest --coverage",
|
|
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
"test:e2e": "jest --config ./test/jest-e2e.json",
|
|
"dev": "nodemon",
|
|
"test:push": "ts-node src/cli/test-push.ts",
|
|
"test:push:interactive": "ts-node src/cli/test-push.ts interactive",
|
|
"test:push:health": "ts-node src/cli/test-push.ts health",
|
|
"test:push:full": "ts-node src/cli/test-push.ts full --user-id",
|
|
"test:push:help": "ts-node src/cli/test-push.ts --help"
|
|
},
|
|
"bin": {
|
|
"notificator2-test": "./dist/cli/test-push.js"
|
|
},
|
|
"dependencies": {
|
|
"@coopenomics/notifications": "workspace:*",
|
|
"@nestjs/common": "^10.0.0",
|
|
"@nestjs/config": "^3.0.0",
|
|
"@nestjs/core": "^10.0.0",
|
|
"@nestjs/platform-express": "^10.0.0",
|
|
"@nestjs/schedule": "^4.0.0",
|
|
"@nestjs/typeorm": "^10.0.2",
|
|
"@types/inquirer": "^9.0.7",
|
|
"@types/web-push": "^3.6.4",
|
|
"axios": "^1.6.0",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^12.1.0",
|
|
"dotenv": "^16.3.1",
|
|
"inquirer": "^12.4.3",
|
|
"node-fetch": "^3.3.2",
|
|
"pg": "^8.16.3",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rxjs": "^7.8.1",
|
|
"typeorm": "0.3.20",
|
|
"web-push": "^3.6.7",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^10.0.0",
|
|
"@nestjs/schematics": "^10.0.0",
|
|
"@nestjs/testing": "^10.0.0",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/node": "^20.3.1",
|
|
"@types/pg": "^8.15.4",
|
|
"@types/supertest": "^2.0.12",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.0.0",
|
|
"source-map-support": "^0.5.21",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-loader": "^9.4.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|