This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
178 lines (178 loc) · 5.47 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "@folio/search",
"version": "5.1.0",
"description": "Search across the Codex",
"repository": "folio-org/ui-search",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"license": "Apache-2.0",
"main": "src/index.js",
"bugs": {
"url": "https://issues.folio.org/projects/UISE",
"email": "[email protected]"
},
"stripes": {
"actsAs": [
"app"
],
"displayName": "ui-search.meta.title",
"fullName": "Codex Search",
"defaultPreviewWidth": "40%",
"helpPage": "https://wiki.folio.org/pages/viewpage.action?pageId=1415393",
"route": "/codexsearch",
"home": "/codexsearch?filters=available.true&qindex=title&query=&sort=title",
"queryResource": "query",
"okapiInterfaces": {
"codex": "3.0"
},
"permissionSets": [
{
"permissionName": "module.search.enabled",
"displayName": "UI: Codex Search module is enabled",
"visible": false
},
{
"permissionName": "ui-search.codex-mux.instances",
"visible": false,
"subPermissions": [
"codex-mux.instances.collection.get",
"codex-mux.instances.item.get",
"codex-mux.instances-sources.collection.get"
]
},
{
"permissionName": "ui-search.codex-mux.packages",
"visible": false,
"subPermissions": [
"codex-mux.packages.collection.get",
"codex-mux.packages.item.get",
"codex-mux.packages-sources.collection.get"
]
},
{
"permissionName": "ui-search.codex-ekb.instances",
"visible": false,
"subPermissions": [
"codex-ekb.instances.collection.get",
"codex-ekb.instances.item.get",
"codex-ekb.instances-sources.collection.get"
]
},
{
"permissionName": "ui-search.codex-ekb.packages",
"visible": false,
"subPermissions": [
"codex-ekb.packages.collection.get",
"codex-ekb.packages.item.get",
"codex-ekb.packages-sources.collection.get"
]
},
{
"permissionName": "ui-search.codexsearch",
"displayName": "Codex: Search with all back-ends",
"visible": true,
"subPermissions": [
"ui-search.codex-mux.instances",
"ui-search.codex-mux.packages",
"ui-search.codex-ekb.instances",
"ui-search.codex-ekb.packages",
"module.search.enabled",
"users.item.get"
]
}
],
"translations": {
"en": {
"search": "Search",
"resultCount": "{count, number} {count, plural, one {Record found} other {Records found}}"
}
},
"icons": [
{
"name": "local-source",
"alt": "local inventory",
"title": "a local source of items that can be checked out"
},
{
"name": "kb",
"fileName": "generic",
"alt": "knowledge base",
"title": "a knowledge base of e-resources available for viewing"
},
{
"name": "app",
"alt": "Codex Search",
"title": "Search across the Codex"
}
],
"welcomePageEntries": [
{
"iconName": "local-source",
"headline": "Search local inventory and e-resources together!",
"description": "The Codex Search application lets you search across multiple sources of physical and electronic resources ina unified way"
},
{
"iconName": "kb",
"headline": "This is a technology preview",
"description": "The present version of this application is incomplete, and will subsequently be expanded in a number of ways."
}
],
"libraryCredits": "This application is made possible by [the React library](https://reactjs.org/)."
},
"scripts": {
"start": "stripes serve",
"lint": "eslint .",
"test": "jest --ci --coverage",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/ui-search ./translations/ui-search/compiled"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.8",
"@bigtest/interactor": "^0.9.2",
"@bigtest/mocha": "^0.5.2",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^5.0.0",
"@folio/stripes": "^7.0.0",
"@folio/stripes-cli": "^2.0.0",
"@folio/stripes-core": "^8.0.0",
"@formatjs/cli": "^4.2.20",
"@testing-library/dom": "^8.10.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.1.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^6.2.1",
"faker": "^4.1.0",
"inflected": "^2.0.4",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"jest-junit": "^13.0.0",
"miragejs": "^0.1.40",
"mocha": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.7.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.0",
"sinon": "^7.2.3"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react-hot-loader": "^4.3.12"
},
"peerDependencies": {
"@folio/stripes": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.7.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}