-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
113 lines (113 loc) · 3.05 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
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "strapi-plugin-menus",
"version": "1.6.1",
"description": "A plugin for Strapi CMS to customize the structure of menus and menu items.",
"license": "MIT",
"strapi": {
"displayName": "Menus",
"name": "menus",
"description": "Customize the structure of menus and menu items.",
"kind": "plugin"
},
"author": {
"name": "Matt Milburn",
"url": "https://github.com/mattmilburn"
},
"maintainers": [
{
"name": "Matt Milburn",
"url": "https://github.com/mattmilburn"
}
],
"engines": {
"node": ">=16.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --fix-dry-run --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ./",
"format": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"format:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"test": "jest --testPathPattern='\\/__tests__\\/.*\\.(?:test|spec)\\.js$' --ci 2>&1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --check",
"eslint --fix-dry-run"
]
},
"dependencies": {
"qs": "6.11.2",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-flip-move": "3.0.5",
"react-query": "3.39.3",
"react-redux": "8.1.1",
"react-router-dom": "6.16.0",
"react-window": "1.8.9"
},
"peerDependencies": {
"@strapi/design-system": "^1.9.0",
"@strapi/helper-plugin": "^4.13.1",
"@strapi/icons": "^1.9.0",
"@strapi/strapi": "^4.13.1",
"@strapi/utils": "^4.13.1",
"formik": "^2.2.9",
"lodash": "4.17.21",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-intl": "^6.4.1",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/preset-react": "7.22.5",
"@strapi/design-system": "^1.9.0",
"@strapi/helper-plugin": "^4.13.1",
"@strapi/icons": "^1.9.0",
"@strapi/strapi": "^4.13.1",
"@strapi/utils": "^4.13.1",
"@swc/core": "1.3.70",
"@swc/jest": "0.2.27",
"eslint": "8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"formik": "^2.2.9",
"husky": "8.0.3",
"jest": "29.6.1",
"jest-junit": "16.0.0",
"lint-staged": "13.2.3",
"lodash": "4.17.21",
"prettier": "2.8.8",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-intl": "^6.4.1",
"styled-components": "5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattmilburn/strapi-plugin-menus.git"
},
"keywords": [
"strapi",
"plugin",
"link",
"list",
"mega",
"menu",
"navigation",
"nested",
"page"
]
}