-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "@webbio/strapi-plugin-scheduler",
"private": false,
"version": "1.0.5",
"description": "A plugin to publish or depublish content types in the future.",
"scripts": {
"develop": "tsc -p tsconfig.server.json -w",
"build": "tsc -p tsconfig.server.json",
"prepublish": "tsc -p tsconfig.server.json",
"format": "prettier --write ."
},
"main": "dist/server/index.js",
"types": "dist/types.js",
"strapi": {
"name": "scheduler",
"description": "A plugin to publish or depublish content types in the future.",
"kind": "plugin"
},
"dependencies": {
"@strapi/design-system": "^1.8.2",
"@strapi/helper-plugin": "^4.12.0",
"@strapi/icons": "^1.8.2",
"@strapi/typescript-utils": "^4.12.0",
"@strapi/utils": "^4.12.0"
},
"devDependencies": {
"@strapi/typescript-utils": "^4.12.0",
"@types/react": "^17.0.53",
"@types/react-dom": "^18.0.28",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.6",
"typescript": "5.1.6"
},
"peerDependencies": {
"@strapi/strapi": "^4.12.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.6"
},
"author": {
"name": "Webbio <info@webbio.nl>"
},
"maintainers": [
{
"name": "Webbio"
}
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}