-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.26 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
{
"name": "@nhogs/nestjs-firebase",
"version": "0.0.17",
"engines": {
"node": ">=16.x"
},
"description": "Firebase module for Nest framework",
"author": "Frederic Ciminera",
"repository": {
"type": "git",
"url": "git+https://github.com/Nhogs/nestjs-firebase.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"emulators": "firebase emulators:start --project demo-nhogs-nestjs-firebase --import=e2e/import",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"update": "npx npm-check-updates -u"
},
"keywords": [
"firebase",
"nest",
"nestjs",
"module"
],
"bugs": {
"url": "https://github.com/Nhogs/nestjs-firebase/issues"
},
"homepage": "https://github.com/Nhogs/nestjs-firebase#readme",
"devDependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.9",
"@nestjs/mapped-types": "^2.0.5",
"@nestjs/platform-express": "^10.3.9",
"@nestjs/testing": "^10.3.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"axios": "^1.7.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"firebase": "^9.0.0 || ^10.0.0",
"firebase-admin": "^10.0.0 || ^11.0.0 || ^12.0.0",
"reflect-metadata": "^0.1.0 || ^0.2.0",
"rxjs": "^6.0.0 || ^7.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"lib/**/*.(t|j)s",
"!**/index.ts"
],
"coverageDirectory": "./coverage",
"collectCoverage": true,
"testEnvironment": "node"
}
}