generated from duniapay/fiat-api
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "paymnts",
"version": "1.0.0",
"description": "The ultimate collection of production-ready and flexible NestJS Boilerplate.",
"author": {
"name": "Joey Goksu",
"email": "[email protected]",
"url": "https://joeygoksu.com"
},
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"build:dev": "nest build && pm2 start pm2.yaml",
"build:prod": "nest build && NODE_PORT=3003 pm2 start pm2.yaml -n paymnts --env production",
"pm2:delete": "pm2 delete paymnts-app",
"start": "pm2 start pm2.yaml -n paymnts --no-daemon --env development",
"build-docker:dev": "nest build && NODE_PORT=3009 pm2 start pm2.yaml -n paymnts --no-daemon --env development",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:watch": "NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=development nest start --debug --watch",
"start:dev": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"commit": "git-cz",
"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",
"typeorm": "ts-node --transpile-only -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/config/database.ts",
"schema:sync": "npm run typeorm schema:sync",
"add:migration": "npm run build && npm run typeorm migration:generate -- -n",
"apply:migration": "npm run build && npm run typeorm migration:run",
"revert:migration": "npm run build && npm run typeorm migration:revert",
"drop:database": "npm run typeorm schema:drop",
"prepare": "husky install"
},
"dependencies": {
"@casl/ability": "^5.4.3",
"@fiatconnect/fiatconnect-types": "^7.0.1",
"@nestjs/axios": "^0.1.0",
"@nestjs/bull": "^0.6.1",
"@nestjs/common": "^9.1.2",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.1.2",
"@nestjs/jwt": "^9.0.0",
"@nestjs/mapped-types": "1.1.0",
"@nestjs/microservices": "^9.1.2",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.1.2",
"@nestjs/schedule": "^2.1.0",
"@nestjs/swagger": "^6.1.2",
"@nestjs/terminus": "^9.1.2",
"@nestjs/typeorm": "^9.0.1",
"bcryptjs": "^2.4.3",
"bull": "^4.10.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"dotenv": "^16.0.2",
"express-basic-auth": "^1.2.1",
"helmet": "^6.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"pm2": "^5.2.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"response-time": "^2.3.2",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"swagger-ui-express": "^4.5.0",
"typeorm": "^0.3.9",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt": "^17.1.2",
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.11",
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.15.9",
"@types/cron": "^1.7.3",
"@types/eslint": "^7.28.0",
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^16.0.0",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/pg": "^8.6.1",
"@types/prettier": "^2.3.2",
"@types/rimraf": "^3.0.2",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"commitizen": "^4.2.5",
"danger": "^11.1.2",
"danger-plugin-jest": "^1.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"jest": "27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}