forked from ArkerLabs/event-sourcing-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "event-sourcing-nestjs",
"version": "1.0.8",
"description": "NestJS module for implementing Event Sourcing.",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"dependencies": {
"@types/node": "^13.5.0",
"eventstore": "^1.15.2",
"mongodb": "^3.5.2"
},
"devDependencies": {
"@nestjs/common": "6.10.14",
"@nestjs/core": "^6.7.2",
"@nestjs/cqrs": "^6.1.0",
"@nestjs/platform-express": "^6.11.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArkerLabs/event-sourcing-nestjs.git"
},
"keywords": [
"nestjs",
"es",
"eventsourcing",
"cqrs",
"ddd"
],
"author": "ArkerLabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArkerLabs/event-sourcing-nestjs/issues"
},
"homepage": "https://github.com/ArkerLabs/event-sourcing-nestjs#readme"
}