-
Notifications
You must be signed in to change notification settings - Fork 590
/
defaults.js
61 lines (61 loc) · 2.02 KB
/
defaults.js
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
module.exports = {
modules: {
'@apostrophecms/log': {},
'@apostrophecms/error': {},
'@apostrophecms/util': {},
'@apostrophecms/i18n': {},
'@apostrophecms/multisite-i18n': {},
'@apostrophecms/task': {},
'@apostrophecms/schema': {},
'@apostrophecms/uploadfs': {},
'@apostrophecms/asset': {},
'@apostrophecms/busy': {},
'@apostrophecms/launder': {},
'@apostrophecms/http': {},
'@apostrophecms/db': {},
'@apostrophecms/lock': {},
'@apostrophecms/cache': {},
'@apostrophecms/migration': {},
'@apostrophecms/attachment': {},
'@apostrophecms/express': {},
'@apostrophecms/url': {},
'@apostrophecms/template': {},
'@apostrophecms/email': {},
'@apostrophecms/permission': {},
'@apostrophecms/admin-bar': {},
'@apostrophecms/notification': {},
'@apostrophecms/login': {},
'@apostrophecms/doc': {},
'@apostrophecms/job': {},
'@apostrophecms/modal': {},
'@apostrophecms/oembed': {},
'@apostrophecms/pager': {},
'@apostrophecms/any-doc-type': {},
// global comes first so it can register a doc type manager and clean things up before
// pages claims any orphan page types
'@apostrophecms/global': {},
'@apostrophecms/polymorphic-type': {},
'@apostrophecms/page': {},
'@apostrophecms/home-page': {},
'@apostrophecms/archive-page': {},
'@apostrophecms/search': {},
'@apostrophecms/any-page-type': {},
'@apostrophecms/area': {},
'@apostrophecms/rich-text-widget': {},
'@apostrophecms/html-widget': {},
'@apostrophecms/image-widget': {},
'@apostrophecms/oembed-field': {},
'@apostrophecms/video-widget': {},
'@apostrophecms/ui': {},
'@apostrophecms/user': {},
'@apostrophecms/settings': {},
'@apostrophecms/image': {},
'@apostrophecms/image-tag': {},
'@apostrophecms/file': {},
'@apostrophecms/file-tag': {},
'@apostrophecms/soft-redirect': {},
'@apostrophecms/submitted-draft': {},
'@apostrophecms/command-menu': {},
'@apostrophecms/translation': {}
}
};