forked from nestjs/cqrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "@miniroman/cqrs",
"version": "7.0.1",
"description": "A lightweight CQRS module for Nest framework (node.js)",
"license": "MIT",
"url": "https://github.com/nestjs/cqrs#readme",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-angular": "12.1.1",
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@types/jest": "26.0.22",
"@types/node": "11.15.51",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-plugin-import": "2.22.1",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"release-it": "14.6.1",
"rxjs": "6.6.7",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0",
"reflect-metadata": "0.1.13",
"rxjs": "^6.4.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/cqrs"
}
}