-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.13 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
{
"name": "users-roles-groups",
"version": "0.0.1",
"description": "Protect your API with a full-authentication process based on JWT",
"repository": {
"type": "git",
"url": "git@github.com:RedSoftwareSystems/strapi-users-roles-groups.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "RED Software Systems s.r.l.",
"email": "hi@red.software.systems",
"url": "https://red.software.systems"
},
"maintainers": [
{
"name": "RED Software Systems s.r.l.",
"email": "hi@red.software.systems",
"url": "https://red.software.systems"
}
],
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./strapi-server.js",
"require": "./strapi-server.js",
"default": "./strapi-server.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pack-up build",
"clean": "run -T rimraf dist",
"lint": "run -T eslint .",
"test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
"test:front:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js",
"test:front:watch": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js --watchAll",
"test:front:watch:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll",
"test:unit": "run -T jest",
"test:unit:watch": "run -T jest --watch",
"watch": "pack-up watch"
},
"dependencies": {
"@strapi/design-system": "1.14.1",
"@strapi/helper-plugin": "4.17.0",
"@strapi/icons": "1.14.1",
"@strapi/utils": "4.17.0",
"bcryptjs": "2.4.3",
"formik": "2.4.0",
"grant-koa": "5.4.8",
"immer": "9.0.19",
"jsonwebtoken": "9.0.0",
"jwk-to-pem": "2.0.5",
"koa": "2.13.4",
"koa2-ratelimit": "^1.1.2",
"lodash": "4.17.21",
"prop-types": "^15.8.1",
"purest": "4.0.2",
"react-intl": "6.4.1",
"react-query": "3.39.3",
"react-redux": "8.1.1",
"url-join": "4.0.1",
"yup": "0.32.9"
},
"devDependencies": {
"@strapi/pack-up": "4.17.0",
"@strapi/strapi": "4.17.0",
"@testing-library/dom": "9.2.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"coding-standards": "^1.0.0",
"msw": "1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.4",
"styled-components": "5.3.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"displayName": "Roles & Permissions",
"name": "users-permissions",
"description": "Protect your API with a full authentication process based on JWT. This plugin comes also with an ACL strategy that allows you to manage the permissions between the groups of users.",
"required": true,
"kind": "plugin"
}
}