-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
121 lines (121 loc) · 3.62 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/stripes-core",
"version": "10.3.0",
"description": "The starting point for Stripes applications",
"license": "Apache-2.0",
"repository": "folio-org/stripes-core",
"sideEffects": [
"*.css"
],
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"scripts": {
"start": "stripes serve",
"test": "yarn run test:jest && yarn run test:bigtest ",
"test:bigtest": "stripes test karma",
"test:bt-dev": "stripes test karma --watch",
"test:jest": "jest --ci --coverage --colors",
"lint": "eslint . && stylelint \"src/**/*.css\"",
"eslint": "eslint .",
"stylelint": "stylelint \"src/**/*.css\"",
"formatjs-compile": "formatjs compile-folder --ast --format simple ./translations/stripes-core ./translations/stripes-core/compiled",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json"
},
"stripes": {
"okapiInterfaces": {
"users-bl": "5.0 6.0",
"authtoken": "1.0 2.0",
"configuration": "2.0"
},
"optionalOkapiInterfaces": {
"consortia": "1.0",
"login-saml": "2.0",
"roles": "1.1",
"users-keycloak": "1.0"
},
"permissionSets": [
{
"permissionName": "settings.enabled",
"displayName": "UI: settings area is enabled"
}
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@bigtest/convergence": "^0.10.0",
"@bigtest/interactor": "^0.7.2",
"@bigtest/mirage": "^0.0.1",
"@folio/eslint-config-stripes": "^7.0.0",
"@folio/jest-config-stripes": "^2.0.0",
"@folio/stripes-cli": "^3.0.0",
"@folio/stripes-components": "^12.3.0",
"@folio/stripes-connect": "^9.3.0",
"@folio/stripes-logger": "^1.0.0",
"@folio/stripes-testing": "^4.5.0",
"@formatjs/cli": "^6.1.3",
"chai": "^4.1.2",
"eslint": "^7.32.0",
"jest-fetch-mock": "^3.0.3",
"miragejs": "^0.1.32",
"mocha": "^10.2.0",
"moment": "^2.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-redux": "^8.0.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-junit-formatter": "^0.2.2"
},
"dependencies": {
"@apollo/client": "^3.2.1",
"classnames": "^2.2.5",
"core-js": "^3.26.1",
"final-form": "^4.18.2",
"graphql": "^16.0.0",
"history": "^4.6.3",
"hoist-non-react-statics": "^3.3.0",
"inactivity-timer": "^1.0.0",
"jwt-decode": "^3.1.2",
"ky": "^0.23.0",
"localforage": "^1.5.6",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.14",
"ms": "^2.1.3",
"prop-types": "^15.5.10",
"query-string": "^7.1.2",
"react-cookie": "^4.0.3",
"react-final-form": "^6.3.0",
"react-query": "^3.6.0",
"react-titled": "^2.0.0",
"react-transform-catch-errors": "^1.0.2",
"react-transition-group": "^4.4.5",
"redux": "^4.0.0",
"redux-form": "^8.3.0",
"redux-logger": "^3.0.6",
"redux-observable": "^1.2.0",
"redux-thunk": "^2.1.0",
"regenerator-runtime": "^0.13.10",
"rtl-detect": "^1.0.2",
"rxjs": "^6.6.3",
"use-deep-compare": "^1.1.0"
},
"peerDependencies": {
"@folio/stripes-components": "^12.0.0",
"@folio/stripes-connect": "^9.0.0",
"@folio/stripes-logger": "^1.0.0",
"moment": "^2.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-redux": "^8.0.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux-observable": "^1.2.0",
"rxjs": "^6.6.3"
}
}