-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
111 lines (111 loc) · 2.94 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
{
"name": "strapi-plugin-navigation",
"version": "2.5.4",
"description": "Strapi - Navigation plugin",
"strapi": {
"name": "navigation",
"displayName": "Navigation",
"description": "Create consumable navigation with a simple and straightforward visual builder",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/VirtusLab/strapi-plugin-navigation"
},
"scripts": {
"publish:latest": "cd build && npm publish --tag latest",
"prepublish:latest": "npm run clean && npm run build && node build/setup-package.js",
"test:unit": "jest --verbose --coverage",
"test:unit:watch": "jest --watch",
"build": "tsc",
"build:dev": "npm run build && cp ./package.json ./build && cd ./build && yarn",
"clean": "rm -rf build",
"develop": "nodemon --exec \"npm run build:dev\""
},
"types": "./types/index.d.ts",
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"@strapi/utils": "^4.25.11",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^5.3.4",
"react-router-dom": "5.3.4",
"react-intl": "6.4.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@jest/types": "29.5.x",
"@strapi/admin": "4.25.11",
"@strapi/helper-plugin": "4.25.11",
"@types/jest": "29.5.1",
"@types/koa__router": "^12.0.4",
"@types/lodash": "^4.14.181",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.4",
"codecov": "^3.7.2",
"formik": "^2.2.9",
"jest": "29.6.0",
"jest-cli": "^27.5.1",
"jest-styled-components": "^7.0.2",
"koa": "^2.8.0",
"nodemon": "^2.0.15",
"strapi-plugin-rest-cache": "^4.2.9",
"strapi-typed": "1.0.20",
"ts-jest": "29.1.1",
"ts-node": "^10.7.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"@strapi/data-transfer": "4.25.11",
"@strapi/strapi": "4.x",
"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"
},
"author": {
"name": "VirtusLab",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
"maintainers": [
{
"name": "VirtusLab // Mateusz Ziarko",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
{
"name": "VirtusLab // Maksymilian Pamuła",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
{
"name": "VirtusLab // Maciej Witkowski",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
{
"name": "VirtusLab // Tomasz Puch",
"email": "[email protected]",
"url": "https://virtuslab.com"
}
],
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"nodemonConfig": {
"ignore": [
"./build/**/*"
],
"ext": "js,json,ts"
},
"keywords": [
"strapi",
"plugin",
"navigation"
],
"license": "MIT"
}