Skip to content

Commit a4eca0e

Browse files
committed
initial commit
0 parents  commit a4eca0e

14 files changed

+5895
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
.envrc

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ESO-PWN
2+
3+
Event Sourcing Order-Payment with NATS

event-store/app.js

Whitespace-only changes.

event-store/package.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "event-store",
3+
"version": "0.0.0",
4+
"private": true,
5+
"scripts": {
6+
"start": ""
7+
},
8+
"dependencies": {
9+
}
10+
}

event-store/routes/index.js

Whitespace-only changes.

order/.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": ["@babel/preset-env"],
3+
"plugins": [
4+
"@babel/plugin-proposal-class-properties",
5+
"@babel/plugin-proposal-private-methods"
6+
]
7+
}

order/.eslintrc.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"node": true
5+
},
6+
"extends": "eslint:recommended",
7+
"globals": {
8+
"Atomics": "readonly",
9+
"SharedArrayBuffer": "readonly"
10+
},
11+
"parserOptions": {
12+
"ecmaVersion": 11,
13+
"sourceType": "module"
14+
},
15+
"rules": {
16+
"indent": [
17+
"error",
18+
"tab"
19+
],
20+
"linebreak-style": [
21+
"error",
22+
"unix"
23+
],
24+
"quotes": [
25+
"error",
26+
"double"
27+
],
28+
"semi": [
29+
"error",
30+
"always"
31+
],
32+
"no-trailing-spaces": "error",
33+
"object-curly-spacing": [
34+
"error",
35+
"always"
36+
],
37+
"space-in-brackets": [
38+
"error",
39+
"always"
40+
]
41+
}
42+
}

0 commit comments

Comments
 (0)