-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 1.93 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
{
"name": "nestjs-fireorm",
"version": "0.0.0",
"description": "Nestjs Fireorm module",
"keywords": [
"nestjs",
"fireorm",
"firestore",
"firebase",
"typescript"
],
"main": "lib/nestjs-fireorm.js",
"types": "lib/nestjs-fireorm.d.ts",
"files": [
"lib"
],
"author": "glebbash <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/glebbash/nestjs-fireorm"
},
"license": "MIT",
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint --fix 'src/**/*.ts'",
"prebuild": "rimraf lib",
"build": "tsc --project tsconfig.build.json",
"build:docs": "typedoc --out docs src/nestjs-fireorm.ts",
"test": "jest --config jest.config.ts --coverage",
"test:ci": "npm run lint && npm run test -- --no-cache"
},
"peerDependencies": {
"@google-cloud/firestore": ">= 4",
"@nestjs/common": ">= 8",
"fireorm": ">= 0.20"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@google-cloud/firestore": "^7.5.0",
"@nestjs/common": "^10.3.6",
"@types/jest": "29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"fireorm": "^0.23.3",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-config": "29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.12",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"semantic-release": "^23.0.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
}
}