This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.77 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
{
"name": "fj-event-store",
"version": "0.7.5",
"description": "A EventStore for NodeJS inspired from the prooph/event-store v7.",
"author": "Frank Jogeleit <frank.jogeleit@webdev-jogeleit.de>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"serve": "nodemon -w ./dist -w ./example example/server.js",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"prettier": "prettier src/**/*.ts --write && git status",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/fjogeleit/event-store.git"
},
"keywords": [
"cqrs",
"eventstore",
"ddd",
"eventsourcing",
"postgres",
"mysql",
"sqlite3",
"inmemory"
],
"devDependencies": {
"@types/jest": "24.0.18",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "11.13.21",
"@types/pg-format": "^1.0.1",
"@types/uuid": "^3.4.9",
"fastify": "^2.15.3",
"fastify-postgres": "^2.0.0",
"jest": "^26.4.2",
"minimist": "^1.2.5",
"nodemon": "^2.0.4",
"prettier": "1.18.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"bin": {
"event-store": "bin/event-store"
},
"peerDependencies": {
"@types/pg": "^7.11|^8.0",
"@types/mysql": "^2.15",
"@types/sqlite3": "^3.1.6",
"reflect-metadata": "^0.1.13",
"pg": "^7.12|^8.0",
"mysql": "^2.17",
"sqlite3": "^5.0.0"
},
"dependencies": {
"bind-decorator": "^1.0.11",
"commander": "^3.0.2",
"cosmiconfig": "^6.0.0",
"js-sha1": "^0.6.0",
"kleur": "^3.0.3",
"lodash.clonedeep": "^4.5.0",
"microtime": "^3.0.0",
"pg-format": "^1.0.4",
"uuid": "^3.4.0"
}
}