forked from nestjs/cqrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 913 Bytes
/
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
{
"name": "@nestjs/cqrs",
"version": "6.0.0",
"description": "A lightweight CQRS module for Nest framework (node.js)",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"prettier": "prettier src/**/*.ts --write && git status",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"devDependencies": {
"@nestjs/common": "6.0.0",
"@types/node": "11.11.3",
"@types/jest": "24.0.11",
"husky": "0.14.3",
"jest": "24.5.0",
"lint-staged": "8.1.5",
"prettier": "1.11.1",
"rxjs": "6.4.0",
"ts-jest": "23.10.5",
"typescript": "3.3.3333"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.4.0"
},
"lint-staged": {
"*.ts": ["prettier --write", "git add"]
}
}