-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "strapi-plugin-react-icons",
"version": "0.3.0",
"description": "A plugin for strapi to select react icons.",
"license": "MIT",
"author": {
"name": "Daniel Pantle"
},
"maintainers": [
{
"name": "Daniel Pantle"
}
],
"scripts": {
"build": "tsc -p tsconfig.server.json",
"develop": "tsc -p tsconfig.server.json -w"
},
"dependencies": {
"@strapi/design-system": "^1.13.1",
"@strapi/helper-plugin": "^4.16.2",
"@strapi/icons": "^1.13.0",
"prop-types": "^15.8.1",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@strapi/typescript-utils": "^4.16.2",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.11",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@strapi/strapi": "^4.14.5",
"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.3 || ^6.1.0"
},
"engines": {
"node": ">=14.19.1 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"name": "react-icons",
"displayName": "React Icons",
"description": "A plugin for strapi to select react icons.",
"kind": "plugin"
}
}