@strapi/review-workflows 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/LICENSE +22 -0
  2. package/package.json +77 -0
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015-present Strapi Solutions SAS
2
+
3
+ Portions of the Strapi software are licensed as follows:
4
+
5
+ * All software that resides under an "ee/" directory (the “EE Software”), if that directory exists, is licensed under the license defined in "ee/LICENSE".
6
+
7
+ * All software outside of the above-mentioned directories or restrictions above is available under the "MIT Expat" license as set forth below.
8
+
9
+ MIT Expat License
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@strapi/review-workflows",
3
+ "version": "0.0.1",
4
+ "description": "Review workflows for your content",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git://github.com/strapi/strapi.git"
8
+ },
9
+ "license": "SEE LICENSE IN LICENSE",
10
+ "author": {
11
+ "name": "Strapi Solutions SAS",
12
+ "email": "hi@strapi.io",
13
+ "url": "https://strapi.io"
14
+ },
15
+ "maintainers": [
16
+ {
17
+ "name": "Strapi Solutions SAS",
18
+ "email": "hi@strapi.io",
19
+ "url": "https://strapi.io"
20
+ }
21
+ ],
22
+ "exports": {
23
+ "./package.json": "./package.json"
24
+ },
25
+ "files": [],
26
+ "scripts": {
27
+ "build": "pack-up build",
28
+ "clean": "run -T rimraf ./dist",
29
+ "test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
30
+ "test:ts": "run -T tsc -p tsconfig.json",
31
+ "test:ts:back": "run -T tsc --noEmit -p server/tsconfig.json",
32
+ "test:ts:front": "run -T tsc -p admin/tsconfig.json && run -T tsc -p ee/admin/tsconfig.json",
33
+ "test:unit": "run -T jest",
34
+ "watch": "pack-up watch"
35
+ },
36
+ "dependencies": {
37
+ "@reduxjs/toolkit": "1.9.7",
38
+ "@strapi/design-system": "1.16.0",
39
+ "@strapi/icons": "1.16.0",
40
+ "axios": "1.6.8",
41
+ "react-helmet": "^6.1.0",
42
+ "react-intl": "6.6.2",
43
+ "react-redux": "8.1.3",
44
+ "yup": "0.32.9"
45
+ },
46
+ "devDependencies": {
47
+ "@strapi/admin": "5.0.0-beta.0",
48
+ "@strapi/pack-up": "5.0.0-beta.0",
49
+ "@strapi/plugin-content-manager": "5.0.0-beta.0",
50
+ "@strapi/types": "5.0.0-beta.0",
51
+ "@strapi/utils": "5.0.0-beta.0",
52
+ "msw": "1.3.0",
53
+ "react": "^18.2.0",
54
+ "react-dom": "^18.2.0",
55
+ "react-router-dom": "6.22.3",
56
+ "styled-components": "5.3.11"
57
+ },
58
+ "peerDependencies": {
59
+ "@strapi/admin": "^5.0.0",
60
+ "@strapi/plugin-content-manager": "^5.0.0",
61
+ "react": "^17.0.0 || ^18.0.0",
62
+ "react-dom": "^17.0.0 || ^18.0.0",
63
+ "react-router-dom": "^6.0.0",
64
+ "styled-components": "^5.2.1"
65
+ },
66
+ "engines": {
67
+ "node": ">=18.0.0 <=20.x.x",
68
+ "npm": ">=6.0.0"
69
+ },
70
+ "strapi": {
71
+ "name": "review-workflows",
72
+ "description": "Review workflows for your content",
73
+ "kind": "plugin",
74
+ "displayName": "Review Workflows",
75
+ "required": true
76
+ }
77
+ }