-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
122 lines (122 loc) · 3.99 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
{
"name": "@folio/plugin-bursar-export",
"version": "4.0.3",
"description": "Bursar export",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"stripes": {
"actsAs": [
"plugin"
],
"pluginType": "bursar-export",
"displayName": "ui-plugin-bursar-export.meta.title",
"okapiInterfaces": {
"users": "15.0 16.0",
"feesfines": "16.0 17.0 18.0 19.0",
"data-export-spring": "2.0",
"service-points": "3.0",
"location-units": "2.0",
"locations": "3.0"
},
"permissionSets": [
{
"permissionName": "ui-plugin-bursar-export.bursar-exports.all",
"displayName": "Transfer exports: Modify configuration and start jobs",
"subPermissions": [
"ui-plugin-bursar-export.bursar-exports.manual",
"data-export.config.item.post",
"data-export.config.item.put"
],
"visible": true
},
{
"permissionName": "ui-plugin-bursar-export.bursar-exports.manual",
"displayName": "Transfer exports: Start manual jobs",
"subPermissions": [
"ui-plugin-bursar-export.bursar-exports.view",
"data-export.job.item.post"
],
"visible": true
},
{
"permissionName": "ui-plugin-bursar-export.bursar-exports.view",
"displayName": "Transfer exports: View configuration",
"subPermissions": [
"settings.tenant-settings.enabled",
"usergroups.collection.get",
"owners.collection.get",
"transfers.collection.get",
"feefines.collection.get",
"inventory-storage.service-points.collection.get",
"inventory-storage.location-units.institutions.collection.get",
"inventory-storage.location-units.campuses.collection.get",
"inventory-storage.location-units.campuses.collection.get",
"inventory-storage.location-units.libraries.collection.get",
"inventory-storage.locations.collection.get",
"data-export.config.collection.get"
],
"visible": true
}
]
},
"scripts": {
"build": "yarn stripes build --output ./output",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/ui-plugin-bursar-export ./translations/ui-plugin-bursar-export/compiled",
"lint": "eslint .",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"start": "yarn stripes serve",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.7.4",
"@folio/eslint-config-stripes": "^7.0.0",
"@folio/jest-config-stripes": "^2.0.0",
"@folio/stripes": "^9.0.0",
"@folio/stripes-cli": "^3.0.0",
"@formatjs/cli": "^6.2.0",
"@types/react": "^18.2.0",
"core-js": "^3.6.1",
"eslint-plugin-filenames": "^1.3.2",
"identity-obj-proxy": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-query": "^3.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.3",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@ngneat/falso": "^6.4.0",
"classnames": "^2.3.2",
"lodash": "^4.17.5",
"prop-types": "^15.5.10",
"react-final-form": "^6.3.0",
"react-final-form-arrays": "^3.1.0",
"react-final-form-listeners": "^1.0.2",
"react-router-prop-types": "^1.0.4"
},
"peerDependencies": {
"@folio/stripes": "^9.0.0",
"@types/react": "^18.2.0",
"final-form": "^4.18.2",
"final-form-arrays": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-query": "^3.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
}