forked from folio-org/ui-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.1 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
{
"name": "@folio/calendar",
"version": "7.2.0",
"description": "Opening hours",
"repository": "folio-org/ui-calendar",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"license": "Apache-2.0",
"engines": {
"node": ">=8.9.4"
},
"main": "src/index.js",
"stripes": {
"actsAs": [
"settings"
],
"displayName": "ui-calendar.meta.title",
"route": "/calendar",
"hasSettings": true,
"icons": [
{
"name": "app",
"alt": "Institutional calendar",
"title": "Calendar"
}
],
"okapiInterfaces": {
"calendar": "4.0",
"service-points": "3.0"
},
"permissionSets": [
{
"permissionName": "module.calendar.enabled",
"displayName": "UI: Calendar module is enabled"
},
{
"permissionName": "ui-calendar.all",
"displayName": "Settings (Calendar): Can create, view, edit, and remove calendar events",
"description": "User can create,edit, view, and remove calendar events",
"subPermissions": [
"ui-calendar.edit",
"calendar.periods.item.delete"
],
"visible": true
},
{
"permissionName": "settings.calendar.enabled",
"displayName": "Settings (Calendar): display list of settings pages",
"subPermissions": [
"settings.enabled"
]
},
{
"permissionName": "ui-calendar.view",
"displayName": "Settings (Calendar): Can view calendar events",
"description": "Can view calendar events",
"subPermissions": [
"configuration.entries.collection.get",
"inventory-storage.service-points.collection.get",
"calendar.opening-hours.collection.get",
"calendar.periods.collection.get",
"calendar.periods.item.get",
"module.calendar.enabled",
"settings.calendar.enabled"
],
"visible": true
},
{
"permissionName": "ui-calendar.edit",
"displayName": "Settings (Calendar): Can create, view, and edit calendar events",
"description": "Can edit calendar events. User cannot remove any calendar event.",
"subPermissions": [
"settings.calendar.enabled",
"ui-calendar.view",
"calendar.periods.item.post",
"calendar.periods.item.put"
],
"visible": true
}
]
},
"scripts": {
"start": "stripes serve",
"lint": "eslint .",
"test": "stripes test karma",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/ui-calendar ./translations/ui-calendar/compiled"
},
"devDependencies": {
"@bigtest/convergence": "^1.0.0",
"@bigtest/interactor": "^0.9.2",
"@bigtest/mocha": "^0.5.2",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^3.2.1",
"@folio/stripes": "^7.0.0",
"@folio/stripes-cli": "^2.0.0",
"@folio/stripes-core": "^8.0.0",
"@folio/stripes-components": "^10.0.0",
"@formatjs/cli": "^4.2.21",
"babel-eslint": "^9.0.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^5.5.0",
"faker": "^4.1.0",
"inflected": "^2.0.4",
"miragejs": "^0.1.40",
"mocha": "^6.1.4",
"moment": "^2.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.3.12",
"react-intl": "^5.7.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.0",
"sinon": "^7.3.2",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-junit-formatter": "^0.2.1"
},
"dependencies": {
"@folio/react-intl-safe-html": "^3.1.0",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"randomcolor": "^0.5.3",
"react-big-calendar": "^0.22.1",
"redux-form": "^8.3.7"
},
"peerDependencies": {
"@folio/stripes": "^7.0.0",
"moment": "^2.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.7.0",
"react-router-dom": "^5.2.0"
}
}