This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.43 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
84
{
"name": "nestjs-firestore",
"version": "0.2.0",
"description": "A NestJS Module for the Firestore Admin SDK",
"author": "gelouko",
"private": true,
"license": "UNLICENSED",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "nest build",
"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",
"test:e2e": "firebase emulators:exec --only firestore \"jest --config ./test/jest-e2e.json --detectOpenHandles\"",
"hooks:pre-commit": "",
"hooks:commit-msg": "npx --no -- commitlint --edit ${1}",
"lint": "eslint \"{lib,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@nestjs/cli": "^9.2.0",
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.3.9",
"@types/express": "^4.17.17",
"@types/jest": "28.1.8",
"@types/node": "^18.11.18",
"@types/pluralize": "^0.0.29",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"jest": "28.1.3",
"prettier": "^2.8.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.2",
"rxjs": "^7.2.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.8",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@google-cloud/firestore": "^6.4.3",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.2",
"rxjs": "^7.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"pluralize": "^8.0.0"
}
}