forked from VirtusLab-Open-Source/strapi-plugin-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.47 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.47 KB
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
{
"name": "strapi-plugin-navigation",
"version": "2.1.0",
"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",
"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\""
},
"dependencies": {
"@strapi/utils": "^4.2.0",
"uuid": "^8.3.0",
"lodash": "^4.17.11",
"pluralize": "^8.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-intl": "4.5.0",
"react-redux": "^7.0.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"reactstrap": "8.4.1",
"redux-saga": "^0.16.0",
"request": "^2.83.0",
"slugify": "^1.4.5"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.4",
"codecov": "^3.7.2",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"jest-styled-components": "^7.0.2",
"koa": "^2.8.0",
"nodemon": "^2.0.15",
"strapi-typed": "1.0.10",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@strapi/strapi": "4.x"
},
"author": {
"name": "VirtusLab",
"email": "strapi@virtuslab.com",
"url": "https://virtuslab.com"
},
"maintainers": [
{
"name": "VirtusLab // Mateusz Ziarko",
"email": "mziarko@virtuslab.com",
"url": "https://virtuslab.com"
},
{
"name": "VirtusLab // Maksymilian Pamuła",
"email": "mpamula@virtuslab.com",
"url": "https://virtuslab.com"
},
{
"name": "VirtusLab // Maciej Witkowski",
"email": "mwitkowski@virtuslab.com",
"url": "https://virtuslab.com"
}
],
"engines": {
"node": ">=14.19.1 <=17.x.x",
"npm": ">=7.x.x"
},
"nodemonConfig": {
"ignore": [
"./build/**/*"
],
"ext": "js,json,ts"
},
"keywords": [
"strapi",
"plugin",
"navigation"
],
"license": "MIT"
}