-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "@speakbox/nestjs-firebase-admin",
"version": "1.2.0",
"description": "NestJS Firebase Admin Service Factory",
"author": "Valentin Prugnaud <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"readmeFilename": "README.md",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepare": "husky install",
"release:dryrun": "npx semantic-release --dry-run --branch $(git describe --contains --all HEAD)",
"release": "npx semantic-release",
"test": "jest --runInBand --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:watch": "jest --watch",
"watch": "tsc -w"
},
"keywords": [
"nestjs"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speakbox/nestjs-firebase-admin.git"
},
"bugs": "https://github.com/nestjsplus/nestjs-firebase-admin",
"peerDependencies": {
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"dependencies": {
"firebase-admin": "^11.10.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@jest-mock/express": "^2.0.2",
"@nestjs/testing": "10.2.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/express": "4.17.17",
"@types/jest": "29.5.4",
"@types/node": "20.5.8",
"@types/supertest": "2.0.12",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"jest": "29.6.4",
"prettier": "3.0.3",
"standard-version": "^9.5.0",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "10.9.1",
"tsc-watch": "6.0.4",
"tsconfig-paths": "4.2.0",
"tslint": "5.20.1",
"typescript": "5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}