forked from folio-org/ui-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.3 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
{
"name": "@folio/dashboard",
"version": "1.0.0",
"description": "Dashboard app for configurable FOLIO widgets",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"lint": "eslint .",
"test": "yarn run test:jest",
"test:jest": "jest --ci --coverage"
},
"stripes": {
"actsAs": [
"app",
"handler",
"settings"
],
"handlerName": "eventHandler",
"displayName": "ui-dashboard.meta.title",
"route": "/dashboard",
"home": "/dashboard",
"hasSettings": true,
"queryResource": "query",
"okapiInterfaces": {
"servint": "1.0"
},
"stripesDeps": [
"@folio/stripes-erm-components"
],
"icons": [
{
"name": "app",
"alt": "Dashboard app for configurable FOLIO widgets",
"title": "Dashboard"
}
],
"permissionSets": [
{
"permissionName": "module.dashboard.enabled",
"displayName": "UI: Dashboard module is enabled",
"visible": true
},
{
"permissionName": "settings.dashboard.enabled",
"displayName": "Settings (dashboard): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
}
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@bigtest/interactor": "^0.9.2",
"@bigtest/mocha": "^0.5.2",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^5.2.0",
"@folio/stripes": "^6.0.0",
"@folio/stripes-cli": "^2.0.0",
"@testing-library/dom": "^7.26.6",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.2",
"@testing-library/user-event": "^12.2.2",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"eslint": "^6.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.2.4",
"eslint-plugin-testing-library": "^3.10.0",
"inflected": "^2.0.4",
"jest": "^26.6.3",
"jest-css-modules": "^2.1.0",
"jest-junit": "^12.0.0",
"miragejs": "^0.1.40",
"mocha": "^8.0.1",
"moment": "^2.22.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^5.8.1",
"react-query": "^3.9.0",
"react-router-dom": "^5.2.0",
"sinon": "^9.0.2"
},
"dependencies": {
"@folio/react-intl-safe-html": "^2.0.0",
"@folio/stripes-erm-components": "^5.0.0",
"classnames": "^2.2.6",
"compose-function": "^3.0.3",
"final-form": "^4.19.0",
"final-form-arrays": "^3.0.1",
"lodash": "^4.17.11",
"prop-types": "^15.6.0",
"query-string": "^6.6.0",
"react-beautiful-dnd": "^13.0.0",
"react-final-form": "^6.4.0",
"react-final-form-arrays": "^3.1.1",
"react-table": "^7.6.3"
},
"peerDependencies": {
"@folio/stripes": "^6.0.0",
"moment": "^2.22.2",
"react": "*",
"react-dom": "*",
"react-intl": "^5.8.1",
"react-query": "^3.9.0",
"react-router-dom": "^5.2.0"
}
}