-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.42 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "plezanje-graphql",
"version": "0.0.2",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "npm run start:dev",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"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 -i --runInBand",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js --dataSource src/ormconfig.ts",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"migration:generate": "npm run typeorm migration:generate -n",
"migration:create": "npm run typeorm migration:create -- -n",
"migration:show": "npm run typeorm migration:show"
},
"dependencies": {
"@nestjs/apollo": "^10.1.3",
"@nestjs/bull": "^0.6.3",
"@nestjs/common": "^9.1.2",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.1.2",
"@nestjs/graphql": "^10.1.3",
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.1.2",
"@nestjs/typeorm": "^9.0.1",
"@types/nodemailer": "^6.4.6",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"apollo-server-plugin-response-cache": "^3.7.0",
"bcrypt": "^5.0.1",
"bull": "^4.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dataloader": "^2.1.0",
"dotenv": "^16.0.3",
"fs": "0.0.1-security",
"graphql": "^16.6.0",
"graphql-type-json": "^0.3.2",
"handlebars": "^4.7.7",
"hbs": "^4.2.0",
"ioredis": "^5.2.3",
"mysql": "^2.18.1",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pg": "^8.8.0",
"postgres": "^3.3.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"sharp": "^0.31.1",
"slugify": "^1.6.5",
"typeorm": "^0.3.10",
"typeorm-naming-strategies": "^4.1.0"
},
"devDependencies": {
"@nestjs/cli": "^9.1.4",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.1.2",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.23",
"@types/passport-jwt": "^3.0.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"fast-xml-parser": "^4.0.10",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}