-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
142 lines (142 loc) · 4.56 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
{
"name": "nest-typescript-starter",
"private": true,
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"init": "run-script-os",
"init:nix": "rimraf src/plugins && mkdir src/plugins && cp src/plugins.template/plugin.module.ts.template src/plugins/plugin.module.ts",
"prebuild": "rimraf dist",
"build": "nest build && npm run copy-pem",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": " npm run copy-pem && nest start",
"start:dev": "npm run copy-env && npm run copy-pem && nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"copy-env": "cp .env.example .env",
"copy-pem": "mkdir -p dist && cp -u ./wallet.pem ./dist/wallet.pem | true",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"clear_jest": "jest --clearCache",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "NODE_ENV=test-e2e jest --config ./test/jest-e2e.json --forceExit --maxWorkers=4",
"typeorm": "ts-node --require ts-node/register ./node_modules/typeorm/cli.js -d src/datasource.ts",
"generate-migration": "npm run typeorm -- migration:generate src/db/migrations/$npm_config_name",
"run-migrations": "npm run typeorm migration:run",
"revert-migrations": "npm run typeorm migration:revert"
},
"dependencies": {
"@elastic/elasticsearch": "7.12.0",
"@golevelup/nestjs-rabbitmq": "3.4.0",
"@multiversx/sdk-core": "11.2.0",
"@multiversx/sdk-native-auth-server": "1.0.6",
"@multiversx/sdk-nestjs": "0.4.16",
"@multiversx/sdk-network-providers": "^1.2.1",
"@nestjs/apollo": "^10.1.7",
"@nestjs/common": "9.3.9",
"@nestjs/config": "^2.3.0",
"@nestjs/core": "9.3.9",
"@nestjs/graphql": "10.2.0",
"@nestjs/jwt": "^10.0.1",
"@nestjs/microservices": "9.3.9",
"@nestjs/mongoose": "9.2.1",
"@nestjs/passport": "9.0.1",
"@nestjs/platform-express": "9.3.2",
"@nestjs/schedule": "2.2.0",
"@nestjs/typeorm": "9.0.1",
"@types/cache-manager": "3.4.0",
"agentkeepalive": "4.2.1",
"amqp-connection-manager": "3.7.0",
"amqplib": "0.8.0",
"apollo-server": "3.11.1",
"aws-sdk": "2.974.0",
"axios": "0.21.4",
"axios-retry": "3.1.8",
"bignumber.js": "9.0.1",
"clarifai-nodejs-grpc": "8.0.0",
"class-transformer": "0.4.0",
"class-validator": "0.14.0",
"config": "3.3.6",
"dataloader": "2.0.0",
"errorhandler": "1.5.1",
"form-data": "4.0.0",
"graphql": "16.6.0",
"graphql-fields-list": "2.2.4",
"graphql-query-complexity": "0.12.0",
"graphql-relay": "0.10.0",
"graphql-tools": "8.3.18",
"graphql-upload": "13.0.0",
"helmet": "4.4.1",
"jwks-rsa": "2.0.3",
"mongoose": "6.9.0",
"mysql2": "2.2.5",
"nest-winston": "1.8.0",
"object-hash": "2.2.0",
"passport": "0.6.0",
"passport-jwt": "4.0.1",
"passport-local": "1.0.0",
"prom-client": "13.1.0",
"redis": "3.1.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.4",
"save": "2.5.0",
"swagger-ui-express": "4.3.0",
"tiny-async-pool": "1.2.0",
"typeorm": "0.3.11",
"winston": "3.7.2"
},
"devDependencies": {
"@nestjs/cli": "9.2.0",
"@nestjs/schematics": "9.0.4",
"@nestjs/testing": "9.1.4",
"@types/express": "^4.17.11",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.36",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.12",
"@types/tiny-async-pool": "^1.0.0",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "29.4.2",
"prettier": "^2.2.1",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules"
]
}
}