-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.07 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.07 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
{
"name": "zqueue",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "Apache2",
"scripts": {
"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",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"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": {
"@bit/zencrepes.zindexer.config": "^0.0.28",
"@bit/zencrepes.zindexer.es-utils": "^0.0.14",
"@bit/zencrepes.zindexer.github-issues": "^0.0.21",
"@bit/zencrepes.zindexer.github-labels": "^0.0.15",
"@bit/zencrepes.zindexer.github-milestones": "^0.0.10",
"@bit/zencrepes.zindexer.github-projects": "^0.0.11",
"@bit/zencrepes.zindexer.github-pullrequests": "^0.0.18",
"@bit/zencrepes.zindexer.github-releases": "^0.0.10",
"@bit/zencrepes.zindexer.github-repos": "^0.0.18",
"@bit/zencrepes.zindexer.github-stargazers": "^0.0.10",
"@bit/zencrepes.zindexer.github-watchers": "^0.0.10",
"@bit/zencrepes.zindexer.testing-perfs": "^0.0.32",
"@bit/zencrepes.zindexer.testing-runs": "^0.0.3",
"@bit/zencrepes.zindexer.testing-states": "^0.0.5",
"@elastic/elasticsearch": "^7.9.0",
"@nestjs/bull": "^0.1.2",
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/elasticsearch": "^7.1.0",
"@nestjs/platform-express": "^7.4.4",
"@types/bull": "^3.14.2",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"bull": "^3.18.0",
"graphql": "^15.3.0",
"load-yaml-file": "^0.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"untildify": "^4.0.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.1",
"@nestjs/testing": "^7.4.4",
"@types/express": "^4.17.8",
"@types/jest": "26.0.13",
"@types/node": "^14.6.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-jest": "26.3.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}