-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.86 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
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-website-builder",
"version": "3.0.1",
"description": "A plugin for Strapi Headless CMS that provides the ability to trigger website builds manually, periodically or through model events.",
"scripts": {
"lint:fix": "eslint --fix \"./**/*.{js,yml}\"",
"format:fix": "prettier --write \"./**/*.{js,json,yml,md}\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
}
],
"homepage": "https://github.com/ComfortablyCoding/strapi-plugin-website-builder#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/strapi-plugin-website-builder.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/strapi-plugin-website-builder/issues"
},
"dependencies": {
"axios": "^1.5.0",
"defu": "^6.1.2",
"lodash": "^4.17.21",
"react-query": "^3.39.3",
"react-router-dom": "^5.3.4",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1",
"vitepress": "^1.0.0-rc.14"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.7"
},
"strapi": {
"displayName": "Website Builder",
"description": "A plugin for Strapi Headless CMS that provides the ability to trigger website builds manually, periodically or through model events.",
"name": "website-builder",
"kind": "plugin"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"publishing",
"website-builder",
"website builder",
"build website"
],
"license": "MIT"
}