This repository was archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.72 KB
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
{
"name": "angotia-engine",
"version": "0.1.0",
"description": "",
"author": "Rafał Gabriel Kostecki",
"license": "Apache 2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "NODE_ENV=development nest start",
"start:dev": "NODE_ENV=development nest start --watch",
"start:debug": "NODE_ENV=debug nest start --debug --watch",
"start:stage": "NODE_ENV=stage node dist/src/main",
"start:prod": "NODE_ENV=production node dist/src/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",
"yalc:add": "yalc add angotia-sdk"
},
"dependencies": {
"@nestjs/common": "^8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/mongoose": "^8.0.1",
"@nestjs/platform-express": "^8.0.6",
"@nestjs/platform-fastify": "^8.0.6",
"@nestjs/swagger": "^5.1.0",
"@nestjs/testing": "^8.0.6",
"@nestjs/throttler": "^2.0.0",
"@nestjs/typeorm": "^8.0.2",
"@willsoto/nestjs-prometheus": "^3.0.0",
"angotia-sdk": "file:.yalc/angotia-sdk",
"dotenv": "^9.0.2",
"eslint-plugin-prettier": "^3.3.1",
"fastify-helmet": "^5.3.2",
"fastify-swagger": "^4.9.0",
"graphql": "^16.0.1",
"keycloak-connect": "^15.0.2",
"mongoose": "^5.12.9",
"nest-keycloak-connect": "^1.7.5",
"pg": "^8.7.1",
"prom-client": "^13.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.37",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/cli": "^7.6.0",
"@nestjs/schematics": "^7.3.1",
"@types/express": "^4.17.11",
"@types/jest": "26.0.23",
"@types/node": "^13.1.6",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^27.0.4",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^27.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"tsx",
"ts"
],
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}