forked from folio-org/ui-invoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
153 lines (153 loc) · 4.21 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
{
"name": "@folio/invoice",
"version": "1.1.0",
"description": "Invoice",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/folio-org/ui-invoice.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"test": "stripes test karma",
"lint": "eslint ."
},
"devDependencies": {
"@bigtest/interactor": "^0.8.1",
"@bigtest/mirage": "^0.0.1",
"@bigtest/mocha": "^0.5.1",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^4.2.0",
"@folio/stripes": "^2.9.0",
"@folio/stripes-cli": "^1.12.0",
"babel-eslint": "^9.0.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.6.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"mocha": "^5.2.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"sinon": "^6.3.4"
},
"dependencies": {
"@folio/stripes-acq-components": "^1.0.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"prop-types": "^15.6.0",
"query-string": "^6.7.0",
"react-intl": "^2.4.0",
"react-router-prop-types": "^1.0.4",
"redux-form": "^7.4.2"
},
"peerDependencies": {
"@folio/stripes": "^2.9.0",
"react-dom": "*",
"react-router-dom": "^5.1.2",
"react": "*"
},
"optionalDependencies": {
"@folio/plugin-find-po-line": "^1.0.0"
},
"stripes": {
"actsAs": ["app", "settings"],
"displayName": "ui-invoice.meta.title",
"route": "/invoice",
"queryResource": "query",
"okapiInterfaces": {
"acquisitions-units": "1.1",
"configuration": "2.0",
"invoice": "2.0 3.0",
"organizations-storage.organizations": "2.1",
"users": "15.0",
"voucher-number": "1.0",
"voucher": "1.1 2.0"
},
"icons": [
{
"name": "app",
"alt": "Manage invoices",
"title": "Invoice"
}
],
"permissionSets": [
{
"permissionName": "module.invoice.enabled",
"displayName": "UI: invoice module is enabled",
"visible": true
},
{
"permissionName": "settings.invoice.enabled",
"displayName": "Settings (invoice): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
},
{
"permissionName": "ui-invoice.third-party-services",
"displayName": "Invoice: Permissions required to call services apart from mod-invoice",
"description": "",
"subPermissions": [
"acquisitions-units.units.collection.get",
"acquisitions-units.memberships.collection.get",
"configuration.entries.collection.get",
"organizations-storage.organizations.collection.get",
"users.collection.get"
]
},
{
"permissionName": "ui-invoice.all",
"displayName": "Invoice: all permissions for Create, View, Edit and Delete invoice",
"visible": true,
"description": "",
"subPermissions": [
"ui-invoice.third-party-services",
"invoice.all"
]
},
{
"permissionName": "ui-invoice.approve",
"displayName": "Invoice: Approve invoice",
"visible": true,
"description": "",
"subPermissions": [
"invoice.item.approve"
]
},
{
"permissionName": "ui-invoice.pay",
"displayName": "Invoice: Pay invoice",
"visible": true,
"description": "",
"subPermissions": [
"invoice.item.pay"
]
},
{
"permissionName": "ui-invoice.acq.unit.assignment.assign",
"displayName": "Invoice: Assign acquisition units to new invoice",
"description": "",
"visible": true,
"subPermissions": [
"invoice.acquisitions-units-assignments.assign"
]
},
{
"permissionName": "ui-invoice.acq.unit.assignment.manage",
"displayName": "Invoice: Manage acquisition units",
"description": "",
"visible": true,
"subPermissions": [
"invoice.acquisitions-units-assignments.manage"
]
}
]
}
}