-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 1.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "es-reduxed",
"version": "0.3.10",
"description": "Server side event sourcing powered by Redux",
"repository": {
"type": "git",
"url": "https://github.com/Antman261/es-reduxed"
},
"main": "lib/index",
"types": "lib/index",
"files": [
"lib",
"LICENSE",
"README.md",
"package.json",
"db/000__event_store.sql"
],
"scripts": {
"test": "npx mocha",
"watch": "npx mocha -w",
"build": "npx tsc -p .",
"build-docs": "npx typedoc --out docs src/index.ts --disableOutputCheck",
"commit": "cz",
"release": "npm run build && npm run build-docs && git add . && standard-version"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --cache --fix"
]
},
"prettier": {
"singleQuote": true
},
"mocha": {
"extension": [
"ts"
],
"watch-files": [
"src/**/*.ts",
"test/**/*.ts"
],
"require": "ts-node/register"
},
"author": "Anthony Manning-Franklin <[email protected]> (antman-does-software.com)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"@types/pg": "^8.6.0",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.25.0",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"pg": "^8.6.0",
"prettier": "^2.2.1",
"redux": "^4.1.0",
"standard-version": "^9.3.0",
"tiny-fixtures": "^0.2.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"dependencies": {
"pg-listen": "^1.7.0"
},
"peerDependencies": {
"redux": "^4.1.0"
},
"keywords": [
"redux",
"eventsourcing",
"event-sourcing",
"typescript",
"backend",
"back-end"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}