-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
143 lines (143 loc) · 4.09 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
{
"name": "@projectreshare/rs",
"version": "1.19.8",
"description": "Resource Sharing",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"lint": "eslint src"
},
"devDependencies": {
"@folio/eslint-config-stripes": "~7.1.0",
"@folio/stripes-cli": "~3.1.0",
"eslint": "^7.0.0"
},
"dependencies": {
"@folio/stripes-data-transfer-components": "~6.0.0",
"@folio/stripes-erm-components": "~9.0.0",
"@folio/stripes-template-editor": "^3.0.0",
"@k-int/stripes-kint-components": "^5.4.0",
"@projectreshare/stripes-reshare": "^1.12.0",
"classnames": "^2.2.6",
"final-form": "^4.2.0",
"final-form-arrays": "^3.0.2",
"graphql-tag": "^2.5.0",
"html-to-react": "^1.4.2",
"json-stable-stringify": "^1.0.1",
"ky": "^0.23.0",
"lodash": "^4.17.4",
"omit-deep-lodash": "^1.1.7",
"prop-types": "^15.6.0",
"query-string": "^8.1.0",
"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.1",
"react-syntax-highlighter": "^15.5.0",
"rrule": "2.6.4",
"xml-beautify": "^1.2.3"
},
"peerDependencies": {
"@folio/stripes": "^9.0.0",
"moment": "^2.29.0",
"react": "*",
"react-intl": "^6.4.7",
"react-query": "^3.9.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.0.0"
},
"resolutions": {
"@rehooks/local-storage": "2.4.4",
"postcss-nesting" : "^10.0.0"
},
"stripes": {
"actsAs": [
"settings"
],
"displayName": "ui-rs.meta.title",
"route": "/rs",
"stripesDeps": [
"@folio/stripes-erm-components",
"@k-int/stripes-kint-components",
"@projectreshare/stripes-reshare",
"@folio/stripes-template-editor"
],
"icons": [
{
"name": "app",
"alt": "Create, view and manage patron requests",
"title": "Requests"
}
],
"okapiInterfaces": {
"rs": "1.0 2.0",
"tags": "1.0"
},
"permissionSets": [
{
"permissionName": "module.rs.enabled",
"displayName": "UI: resource-sharing module is enabled",
"visible": true
},
{
"permissionName": "settings.rs.enabled",
"displayName": "Settings (resource-sharing): settings enabled",
"subPermissions": [
"settings.enabled"
],
"visible": false
},
{
"permissionName": "ui-rs.settings.system",
"displayName": "Settings (resource-sharing): can view and edit system settings that do not have separate permissions",
"subPermissions": [
"settings.rs.enabled",
"rs.settings.get",
"rs.settings.put",
"rs.refdata.get",
"rs.refdata.put"
],
"visible": true
},
{
"permissionName": "ui-rs.settings.notices",
"displayName": "Settings (resource-sharing): Can create, edit and remove notices and notice policies",
"subPermissions": [
"settings.rs.enabled",
"rs.noticePolicies",
"rs.refdata.get",
"rs.template.write"
],
"visible": true
},
{
"permissionName": "ui-rs.settings.hostlmslocations",
"displayName": "Settings (resource-sharing): Can edit host LMS locations and patron profiles",
"subPermissions": [
"settings.rs.enabled",
"rs.directoryentry.get",
"rs.hostlmslocations.write",
"rs.hostlmspatronprofiles.write",
"rs.hostlmsitemloanpolicies.write",
"rs.shelvingLocations.write"
],
"visible": true
},
{
"permissionName": "ui-rs.settings.pullslip-notifications",
"displayName": "Settings (resource-sharing): Can create, edit and remove pullslip notifications and templates",
"subPermissions": [
"settings.rs.enabled",
"rs.file.upload",
"rs.hostlmslocations.get",
"rs.refdata.get",
"rs.report.admin",
"rs.template.write",
"rs.timers"
],
"visible": true
}
]
}
}