forked from folio-org/stripes-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.48 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": "8.1.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",
"clean": "rimraf static",
"test": "stripes test karma",
"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"
},
"engines": {
"node": ">=10.0.0"
},
"stripes": {
"okapiInterfaces": {
"users-bl": "5.0 6.0",
"authtoken": "1.0 2.0",
"configuration": "2.0"
},
"optionalOkapiInterfaces": {
"login-saml": "2.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/mocha": "^0.5.1",
"@bigtest/react": "^0.1.2",
"@folio/eslint-config-stripes": "^6.0.0",
"@folio/stripes-cli": "^2.4.0",
"@folio/stripes-components": "^10.0.0",
"@folio/stripes-connect": "^7.0.0",
"@folio/stripes-logger": "^1.0.0",
"@formatjs/cli": "^4.2.2",
"chai": "^4.1.2",
"eslint": "^7.32.0",
"moment": "^2.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.7.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-junit-formatter": "^0.2.1"
},
"dependencies": {
"@apollo/client": "^3.2.1",
"@formatjs/intl-displaynames": "^2.2.3",
"@formatjs/intl-pluralrules": "^2.2.1",
"@formatjs/intl-relativetimeformat": "^5.2.3",
"classnames": "^2.2.5",
"final-form": "^4.18.2",
"graphql": "^0.11.7",
"history": "^4.6.3",
"hoist-non-react-statics": "^3.3.0",
"jwt-decode": "^2.2.0",
"ky": "^0.23.0",
"localforage": "^1.5.6",
"lodash": "^4.17.21",
"miragejs": "^0.1.32",
"moment-timezone": "^0.5.14",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react-cookie": "^4.0.3",
"react-final-form": "^6.3.0",
"react-query": "^3.6.0",
"react-redux": "^7.2.0",
"react-titled": "^1.0.0",
"react-transform-catch-errors": "^1.0.2",
"react-transition-group": "^2.2.1",
"redux": "^4.0.0",
"redux-form": "^8.3.0",
"redux-logger": "^3.0.6",
"redux-observable": "^1.2.0",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"rtl-detect": "^1.0.2",
"rxjs": "^6.6.3",
"swr": "^0.4.1",
"use-deep-compare": "^1.1.0"
},
"peerDependencies": {
"@folio/stripes-components": "^10.0.0",
"@folio/stripes-connect": "^7.0.0",
"@folio/stripes-logger": "^1.0.0",
"moment": "^2.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.7.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux-observable": "^1.2.0",
"rxjs": "^6.6.3"
},
"resolutions": {
"moment": "~2.24.0"
}
}