forked from Aginix/nestjs-firebase-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
{
"name": "@ridyio/nestjs-firebase-admin",
"version": "2.2.1",
"description": "Firebase Admin module for Nest framework",
"authors": [
{
"name": "Nonpawit Teerachetmongkol",
"email": "nonpawit.tee@aginix.tech"
},
{
"name": "Michael Musso",
"email": "mmusso@smth.it"
},
{
"name": "ridy.io",
"email": "support@.ridy.io"
}
],
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ridyio/nestjs-firebase-admin.git"
},
"scripts": {
"test": "jest --config jest.json",
"test:dev": "jest --config jest.json --watch",
"precommit": "lint-staged",
"prettier": "prettier src/**/*.ts --write && git status",
"build": "rimraf dist && npm run build:lib && npm test",
"build:lib": "tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepare": "npm run build"
},
"peerDependencies": {
"@nestjs/common": "^10.1.0",
"@nestjs/core": "^10.1.0"
},
"dependencies": {
"firebase-admin": "9.7.0"
},
"devDependencies": {
"@nestjs/common": "^10.1.0",
"@nestjs/core": "^10.1.0",
"@nestjs/testing": "^10.1.0",
"@types/jest": "^29.5.3",
"@types/node": "20.4.2",
"dotenv": "^16.3.1",
"husky": "8.0.3",
"jest": "29.6.1",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"supertest": "6.3.3",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}