-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-module-based.json
More file actions
104 lines (104 loc) · 2.83 KB
/
config-module-based.json
File metadata and controls
104 lines (104 loc) · 2.83 KB
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
{
"project": {
"name": "my-react-native-modular-app",
"version": "1.0",
"structure": {
"application": {
"description": "Main application layer",
"children": {
"modules": {
"template": "templates/components.hbs",
"file_extension": "tsx"
},
"core": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"design-system": {
"template": "templates/components.hbs",
"file_extension": "tsx"
}
}
},
"modules": {
"description": "Business modules with full dynamic support",
"allow_dynamic_children": true,
"default_structure": {
"components": {
"template": "templates/components.hbs",
"file_extension": "tsx"
},
"containers": {
"template": "templates/components.hbs",
"file_extension": "tsx"
},
"services": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"hooks": {
"template": "templates/hooks.hbs",
"file_extension": "ts"
},
"types": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"utils": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"providers": {
"template": "templates/components.hbs",
"file_extension": "tsx"
},
"bridges": {
"template": "templates/components.hbs",
"file_extension": "tsx"
}
}
},
"shared": {
"description": "Shared utilities and components",
"children": {
"components": {
"template": "templates/components.hbs",
"file_extension": "tsx"
},
"hooks": {
"template": "templates/hooks.hbs",
"file_extension": "ts"
},
"utils": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"constants": {
"template": "templates/default.hbs",
"file_extension": "ts"
}
}
},
"external": {
"description": "External integrations and APIs",
"children": {
"apis": {
"template": "templates/default.hbs",
"file_extension": "ts"
},
"clients": {
"template": "templates/default.hbs",
"file_extension": "ts"
}
},
"allow_dynamic_children": true,
"default_structure": {
"client": {
"template": "templates/default.hbs",
"file_extension": "ts"
}
}
}
}
}
}