-
-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "google-cloud-pubsub-integration",
"version": "0.0.1",
"description": "Google cloud pubsub integration project",
"private": true,
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "oxfmt \"src/**/*.ts\" \"e2e/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --watch --debug",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r tsx node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ../../jest-e2e.json integration/google-cloud-pubsub"
},
"dependencies": {
"rimraf": "^6.1.3"
},
"devDependencies": {
"@golevelup/nestjs-google-cloud-pubsub": "workspace:^",
"@golevelup/ts-jest": "workspace:^",
"@google-cloud/pubsub": "^5.3.0",
"@nestjs/cli": "^11.0.16",
"@nestjs/testing": "^11.1.17",
"@protobuf-ts/runtime": "^2.11.1",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"avsc": "^5.7.9",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"tsconfig-paths": "4.2.0",
"tsx": "^4.21.0",
"typescript": "6.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}