-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.18 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
{
"name": "strapi-plugin-paper-trail",
"version": "0.6.1",
"description": "Accountability and content versioning for strapi v4+",
"homepage": "https://github.com/PenguinOfWar/strapi-plugin-paper-trail#readme",
"bugs": {
"url": "https://github.com/PenguinOfWar/strapi-plugin-paper-trail/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PenguinOfWar/strapi-plugin-paper-trail.git"
},
"license": "MIT",
"author": {
"name": "Darryl Walker",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Darryl Walker"
}
],
"contributors": [
{
"name": "Brianggalvez",
"url": "https://github.com/Brianggalvez"
},
{
"name": "robsonpiere",
"url": "https://github.com/robsonpiere"
},
{
"name": "redondi88",
"url": "https://github.com/redondi88"
}
],
"scripts": {
"lint": "eslint admin/src server",
"test": "jest",
"todo": "leasot -x --reporter markdown '{admin,server}/**/*' --ignore '**/*.+(jpg|jpeg|gif|png|svg|json)' > todo.md"
},
"dependencies": {
"@strapi/design-system": "^1.6.3",
"@strapi/helper-plugin": "^4.16.2",
"@strapi/icons": "^1.6.3",
"path-to-regexp": "^6.2.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.5.0",
"leasot": "^13.3.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.6"
},
"peerDependencies": {
"@strapi/strapi": "^4.16.2",
"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"
},
"engines": {
"node": ">=14.19.1 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"name": "paper-trail",
"description": "Accountability and content versioning for strapi v4+",
"kind": "plugin",
"displayName": "Paper Trail"
}
}