-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.37 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.37 KB
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
{
"name": "@folio/cyclops",
"version": "1.1.0",
"description": "Description for cyclops",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"scripts": {
"start": "stripes serve",
"test": "echo 'no tests yet'",
"build": "stripes build --output ./output",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"formatjs-compile": "stripes translate compile",
"lint": "eslint -f unix .",
"qlint": "eslint -f unix --rule '{\"no-console\":\"off\"}' ."
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.15.0",
"@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.9.0",
"@folio/eslint-config-stripes": "^8.0.0",
"@folio/stripes": "^10.1.0",
"@folio/stripes-cli": "^4.0.0 || ^4.0.0",
"@folio/stripes-core": "^11.1.0",
"core-js": "^3.6.4",
"eslint": "^7.32.0",
"history": "^4.10.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^7.1.5",
"react-redux": "^8.0.5",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.3"
},
"dependencies": {
"fast-deep-equal": "^3.0.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"@folio/stripes": "^10.1.0",
"react": "^18.2.0",
"react-intl": "^7.1.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"stripes": {
"actsAs": [
"app",
"settings"
],
"icons": [
{
"name": "app",
"alt": "Collaborative Collection Lifecycle Project",
"title": "Cyclops"
}
],
"displayName": "ui-cyclops.meta.title",
"route": "/cyclops",
"okapiInterfaces": {},
"permissionSets": [
{
"permissionName": "module.cyclops.enabled",
"displayName": "UI: ui-cyclops module is enabled",
"visible": true
},
{
"permissionName": "settings.cyclops.enabled",
"displayName": "Settings (cyclops): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
},
{
"permissionName": "ui-cyclops.user.manage",
"displayName": "CYCLOPS: manage lists and spectres",
"visible": true,
"subPermissions": [
"module.cyclops.enabled",
"cyclops.tags.read",
"cyclops.filters.read",
"cyclops.sets.read",
"cyclops.sets.retrieve",
"cyclops.sets.add-objects",
"cyclops.sets.remove-objects",
"cyclops.sets.modify-tags",
"cyclops.sets.add-tags",
"cyclops.sets.remove-tags",
"cyclops.projects.collection.get",
"cyclops.projects.get"
]
},
{
"permissionName": "ui-cyclops.admin.manage",
"displayName": "CYCLOPS: administrate projects",
"visible": true,
"subPermissions": [
"ui-cyclops.user.manage",
"cyclops.tags.create",
"cyclops.filters.create",
"cyclops.sets.create",
"cyclops.sets.delete",
"cyclops.projects.post",
"cyclops.projects.delete",
"cyclops.projects.put"
]
}
]
}
}