-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.03 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
{
"name": "@folio/waitlists",
"version": "1.0.0",
"description": "Waitlists",
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"stripes": {
"type": "app",
"displayName": "Waitlists",
"route": "/waitlists",
"hasSettings": false,
"okapiInterfaces": {
"circulation": "2.2",
"configuration": "2.0",
"item-storage": "4.0",
"loan-policy-storage": "1.0",
"users": "14.0"
},
"permissionSets": [
{
"permissionName": "module.waitlists.enabled",
"displayName": "UI: Waitlists module is enabled"
},
{
"permissionName": "ui-waitlists.all",
"displayName": "Waitlists: All permissions",
"description": "Entire set of permissions needed to use Waitlists",
"visible": true,
"subPermissions": [
"circulation.all",
"circulation-storage.all",
"configuration.all",
"users.collection.get",
"module.checkin.enabled"
]
}
]
},
"scripts": {
"lint": "eslint *.js",
"test": "echo 'placeholder. no tests implemented'"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1"
},
"dependencies": {
"@folio/stripes-components": "^1.4.0",
"dateformat": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"query-string": "^5.0.0",
"react": "^15.4.2",
"react-router-dom": "^4.0.0",
"redux-form": "^7.0.3",
"uuid": "^3.0.1"
},
"peerDependencies": {
"@folio/stripes-connect": "^2.2.1",
"@folio/stripes-core": "^2.1.0"
}
}