-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.9 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
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-notes",
"version": "1.1.3",
"description": "A plugin for Strapi CMS that provides the ability to add notes to entity records.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
}
],
"homepage": "https://github.com/ComfortablyCoding/strapi-plugin-notes#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/strapi-plugin-notes.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/strapi-plugin-notes/issues"
},
"dependencies": {
"@strapi/design-system": "^1.12.0",
"@strapi/helper-plugin": "^4.14.4",
"@strapi/icons": "^1.12.0",
"@strapi/strapi": "^4.14.4",
"prop-types": "^15.8.1",
"react-intl": "^6.4.7"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.3"
},
"peerDependencies": {
"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"
},
"strapi": {
"displayName": "Notes",
"description": "A plugin for Strapi Headless CMS that provides the ability to add notes to entity records.",
"name": "entity-notes",
"kind": "plugin"
},
"engines": {
"node": ">=16.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"notes"
],
"license": "MIT"
}