This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
forked from folio-org/ui-plugin-bursar-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.34 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
{
"name": "@folio/plugin-bursar-export",
"version": "3.0.0",
"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",
"data-export-spring": "1.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/core": "^7.8.0",
"@babel/eslint-parser": "^7.18.2",
"@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/stripes": "^9.0.0",
"@folio/stripes-cli": "^3.0.0",
"@formatjs/cli": "^4.8.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.0",
"babel-jest": "^29.6.1",
"core-js": "^3.6.1",
"eslint": "^6.2.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^23.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.6.1",
"jest-junit": "^16.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": "^28.0.7",
"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"
},
"resolutions": {
"@types/react": "^18.2.0"
}
}