generated from cristobalgvera/nestjs-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.14 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
{
"name": "@cristobalgvera/nestjs-firestore",
"version": "0.0.5",
"author": "Cristóbal Gajardo Vera <[email protected]>",
"description": "Use Firestore with NestJS using injectable collection services",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"release": "pnpm run prebuild && pnpm run build && changeset publish",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --check --ignore-unknown --write",
"format:all": "npm run format -- .",
"lint": "eslint --fix",
"lint:all": "npm run lint -- \"{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",
"prepare": "husky install"
},
"peerDependencies": {
"@google-cloud/firestore": "^6.0.0",
"@nestjs/common": "^10.0.0 || ^9.0.0",
"reflect-metadata": "^0.1.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@automock/jest": "^1.2.0",
"@changesets/cli": "^2.26.1",
"@golevelup/ts-jest": "^0.3.7",
"@nestjs/cli": "^10.0.3",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@types/express": "^4.17.17",
"@types/jest": "29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.1.3"
},
"keywords": [
"nestjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cristobalgvera/nestjs-firestore"
},
"homepage": "https://github.com/cristobalgvera/nestjs-firestore"
}