-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.4 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
{
"name": "cloud-agent",
"version": "0.0.1",
"description": "Cloud Agent Mediator service based on NestJs",
"author": "Alexander Shenshin",
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "yarn install --no-lockfile",
"build": "tsc",
"style:check": "prettier --check \"src/**/*.ts\"",
"style:fix": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json -c tslint.json --fix",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"watch": "nodemon --config nodemon.json",
"debug": "nodemon --config nodemon-debug.json",
"migration:create": "npx mikro-orm migration:create",
"migration:up": "npx mikro-orm migration:up",
"migration:down": "npx mikro-orm migration:down",
"migration:list": "npx mikro-orm migration:list",
"migration:pending": "npx mikro-orm migration:pending",
"migrate:start": "yarn migration:up & yarn start",
"schema:drop": "npx mikro-orm schema:drop",
"test": "jest --runInBand --testTimeout=60000",
"test:watch": "jest --watch --runInBand --testTimeout=60000",
"test:cov": "jest --coverage --runInBand --testTimeout=60000",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand --testTimeout=60000",
"generate-sbom": "npx npm-license-crawler --onlyDirectDependencies --dependencies --json licensesReportDirect.json && npx npm-license-crawler --json licensesReportAll.json"
},
"dependencies": {
"@mikro-orm/core": "^5.2.3",
"@mikro-orm/migrations": "^5.2.3",
"@mikro-orm/nestjs": "^5.1.0",
"@mikro-orm/postgresql": "^5.2.3",
"@nestjs/axios": "^0.1.0",
"@nestjs/common": "^9.0.5",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.5",
"@nestjs/platform-express": "^9.0.5",
"@nestjs/platform-ws": "^9.0.7",
"@nestjs/swagger": "^6.0.4",
"@nestjs/terminus": "^9.1.1",
"@nestjs/websockets": "^9.0.7",
"@sicpa_open_source/peer-did-ts": "^0.2.0",
"@stablelib/ed25519": "^1.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"didcomm-node": "^0.3.4",
"module-alias": "^2.2.2",
"node-mattermost": "^0.0.1",
"pino": "^8.4.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"swagger-ui-express": "^4.5.0",
"type-zoo": "^3.4.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@mikro-orm/cli": "^5.2.3",
"@nestjs/testing": "^9.0.5",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"pino-pretty": "^9.0.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"tslint": "^6.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"_moduleAliases": {
"@common": "src/common",
"@config": "src/config",
"@entities": "src/common/entities",
"@logger": "src/common/logger",
"@utils": "src/common/utils"
},
"mikro-orm": {
"useTsNode": true
}
}