forked from openlibraryenvironment/ui-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.8 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
{
"name": "@folio/rs",
"version": "1.1.0",
"description": "Resource Sharing",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"test-int": "stripes test nightmare --run demo --show",
"test": "stripes test karma",
"lint": "eslint src"
},
"devDependencies": {
"@folio/eslint-config-stripes": "^4.1.1",
"@folio/stripes": "^2.7.4",
"@folio/stripes-cli": "^1.10.0",
"babel-eslint": "^9.0.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.6.0",
"mocha": "^5.2.0",
"react": "~16.7.0",
"react-dom": "~16.7.0",
"react-redux": "~5.1.1",
"redux": "^4.0.0",
"sinon": "^6.3.4"
},
"dependencies": {
"@folio/stripes-erm-components": "^1.4.1",
"@folio/stripes-util": "^1.5.0",
"classnames": "^2.2.6",
"graphql-tag": "^2.5.0",
"html-to-react": "^1.4.2",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-apollo": "^2.1.3",
"react-barcode": "^1.3.4",
"react-final-form": "^6.3.0",
"react-intl": "^2.4.0",
"react-to-print": "^2.5.0",
"redux-form": "^7.0.3"
},
"peerDependencies": {
"@folio/stripes": "^2.7.4",
"@folio/stripes-connect": "^5.2.3",
"react": "*",
"react-router-dom": "^4.1.1"
},
"stripes": {
"actsAs": [
"app",
"settings"
],
"displayName": "ui-rs.meta.title",
"route": "/rs",
"queryResource": "query",
"icons": [
{
"name": "app",
"alt": "Create, view and manage patron requests",
"title": "Requests"
}
],
"okapiInterfaces": {
"rs": "1.4"
},
"permissionSets": [
{
"permissionName": "module.rs.enabled",
"displayName": "UI: resource-sharing module is enabled",
"visible": true
},
{
"permissionName": "ui-rs.patronrequest.view",
"displayName": "RS: Can view patron request",
"visible": true,
"subPermissions": [
"module.rs.enabled"
]
},
{
"permissionName": "ui-rs.patronrequest.edit",
"displayName": "RS: Can edit patron request",
"visible": true,
"subPermissions": [
"ui-rs.patronrequest.view"
]
},
{
"permissionName": "ui-rs.patronrequest.create",
"displayName": "ERM: Can create and edit patron requests",
"visible": true,
"subPermissions": [
"ui-rs.patronrequest.edit"
]
},
{
"permissionName": "settings.rs.enabled",
"displayName": "Settings (resouce-sharing): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
}
]
}
}