-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "@nestjs-architects/typed-cqrs",
"version": "2.1.0",
"description": "Enhance the @nestjs/cqrs building blocks with auto-inferring types.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint",
"build": "rm -rf dist && tsc",
"prepare": "husky install",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs-architects/typed-cqrs.git"
},
"keywords": [
"nestjs",
"node.js",
"cqrs"
],
"contributors": [
{
"name": "Maciej Sikorski",
"email": "[email protected]",
"url": "https://maciejsikorski.com"
},
{
"name": "Kamil Gajowy"
},
{
"name": "Dominik Ostrowski"
}
],
"license": "MIT",
"homepage": "https://github.com/nestjs-architects/typed-cqrs",
"bugs": {
"url": "https://github.com/nestjs-architects/typed-cqrs/issues"
},
"devDependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/cqrs": "9.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.0.0",
"git-format-staged": "2.1.1",
"husky": "6.0.0",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"rxjs": "^7.2.0",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --ignore-unknown --stdin --stdin-filepath \"{}\"' ."
}
},
"publishConfig": {
"access": "public"
}
}