-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.81 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
{
"name": "@raccoona/pyremy-api",
"version": "1.2.0",
"description": "Pyremy API",
"author": "Raccoona Team",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"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"
},
"dependencies": {
"@nestjs/common": "7.0.9",
"@nestjs/config": "0.4.0",
"@nestjs/core": "7.0.9",
"@nestjs/mongoose": "6.4.0",
"@nestjs/platform-express": "7.0.9",
"@typegoose/typegoose": "7.0.0",
"axios": "0.19.2",
"bcrypt": "4.0.1",
"class-transformer": "0.2.3",
"class-validator": "0.12.2",
"js-yaml": "3.13.1",
"jsonwebtoken": "8.5.1",
"keycloak-admin": "1.13.0",
"keycloak-connect": "9.0.3",
"keycloak-js": "9.0.3",
"kuna-sdk": "^0.4.20",
"lodash": "4.17.15",
"moment": "^2.25.3",
"mongoose": "5.9.10",
"nestjs-redis": "^1.2.7",
"nestjs-typegoose": "7.1.22",
"randomstring": "1.1.5",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.5.5",
"uuidv4": "6.0.8"
},
"devDependencies": {
"@nestjs/cli": "7.1.4",
"@nestjs/schematics": "7.0.0",
"@nestjs/testing": "7.0.9",
"@types/bcrypt": "3.0.0",
"@types/express": "4.17.6",
"@types/jest": "25.1.4",
"@types/js-yaml": "3.12.3",
"@types/jsonwebtoken": "8.3.9",
"@types/lodash": "4.14.150",
"@types/mongoose": "5.7.14",
"@types/node": "13.13.0",
"@types/randomstring": "1.1.6",
"@types/supertest": "2.0.8",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.2",
"jest": "25.4.0",
"supertest": "4.0.2",
"ts-jest": "25.4.0",
"ts-loader": "6.2.2",
"ts-node": "8.8.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}