-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
castore.code-workspace
129 lines (129 loc) · 3.07 KB
/
castore.code-workspace
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"stylelint.validate": ["typescript", "typescriptreact"],
"stylelint.customSyntax": "@stylelint/postcss-css-in-js",
"search.exclude": {
"**/coverage": true,
"**/node_modules": true,
"**/.serverless": true,
"**/build": true,
"**/bundles": true,
"**/dist": true,
".yarn": true,
"yarn.lock": true
},
"[dotenv][ignore][properties][shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[html][javascript][json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.tsdk": "🦫 Root/node_modules/typescript/lib"
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"foxundermoon.shell-format",
"stylelint.vscode-stylelint",
"styled-components.vscode-styled-components"
]
},
"folders": [
{
"path": "packages/core",
"name": "🫀 Core"
},
{
"path": "packages/event-storage-adapter-dynamodb",
"name": "🔌 DynamoDB"
},
{
"path": "packages/event-storage-adapter-http",
"name": "🔌 HTTP"
},
{
"path": "packages/event-storage-adapter-redux",
"name": "🔌 Redux"
},
{
"path": "packages/event-storage-adapter-in-memory",
"name": "🔌 InMemory"
},
{
"path": "packages/event-type-json-schema",
"name": "📆 Json Schema Event"
},
{
"path": "packages/event-type-zod",
"name": "📆 Zod Event"
},
{
"path": "packages/command-json-schema",
"name": "👮♀️ Json Schema Command"
},
{
"path": "packages/command-zod",
"name": "👮♀️ Zod Command"
},
{
"path": "packages/message-bus-adapter-event-bridge",
"name": "🚌 EventBridge"
},
{
"path": "packages/message-bus-adapter-event-bridge-s3",
"name": "🚌 EventBridge + S3"
},
{
"path": "packages/message-bus-adapter-in-memory",
"name": "🚌 InMemory"
},
{
"path": "packages/message-queue-adapter-sqs",
"name": "📨 SQS"
},
{
"path": "packages/message-queue-adapter-sqs-s3",
"name": "📨 SQS + S3"
},
{
"path": "packages/message-queue-adapter-in-memory",
"name": "📨 InMemory"
},
{
"path": "packages/lib-test-tools",
"name": "🔨 Test Tools"
},
{
"path": "packages/lib-react-visualizer",
"name": "🔨 React Visualizer"
},
{
"path": "packages/lib-dam",
"name": "🔨 Dam"
},
{
"path": "docs",
"name": "📖 Docs"
},
{
"path": "demo/blueprint",
"name": "✨ Blueprint"
},
{
"path": "demo/implementation",
"name": "✨ Implementation"
},
{
"path": "demo/visualization",
"name": "✨ Visualization"
},
{
"path": ".",
"name": "🦫 Root"
}
]
}