-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.12 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
{
"name": "@folio/__packageName__",
"version": "1.1.0",
"description": "__appDescription__",
"main": "src/index.js",
"repository": "",
"license": "Apache-2.0",
"scripts": {
"start": "stripes serve",
"build": "stripes build --output ./output",
"build-mod-descriptor": "stripes mod descriptor --full --strict | jq '.[]' > module-descriptor.json ",
"formatjs-compile": "stripes translate compile",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.21.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": "^7.0.0",
"@folio/jest-config-stripes": "^2.0.0",
"@folio/stripes": "^9.1.0",
"@folio/stripes-cli": "^__cliVersion__ || ^3.0.0",
"@folio/stripes-core": "^10.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": "^6.4.4",
"react-redux": "^8.0.5",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.3"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"@folio/stripes": "^9.0.0",
"react": "^18.2.0",
"react-intl": "^6.4.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"stripes": {
"actsAs": [
"app",
"settings"
],
"displayName": "ui-__packageName__.meta.title",
"route": "/__appRoute__",
"okapiInterfaces": {},
"permissionSets": [
{
"permissionName": "module.__appName__.enabled",
"displayName": "UI: __displayName__ module is enabled",
"visible": true
},
{
"permissionName": "settings.__appName__.enabled",
"displayName": "Settings (__appName__): display list of settings pages",
"subPermissions": [
"settings.enabled"
],
"visible": true
}
]
}
}