-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.66 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
{
"name": "@oak-digital/strapi-plugin-revalidator",
"private": false,
"version": "0.4.0",
"description": "This is the description of the plugin.",
"strapi": {
"name": "revalidator",
"description": "Description of revalidator plugin",
"kind": "plugin"
},
"dependencies": {
"axios": "^1.3.5",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"zod": "^3.21.4"
},
"files": [
"build"
],
"exports": {
".": {
"import": "./build/",
"require": "./build/"
}
},
"devDependencies": {
"@strapi/typescript-utils": "^4.6.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.194",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.18",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"better-sqlite3": "^9.4.1",
"bumpp": "^9.3.0",
"formik": "^2.2.9",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.6.2",
"react-router-dom": "^5.3.4",
"strapi-typed": "^1.0.16",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.12.x"
},
"author": {
"name": "Oak Digital"
},
"maintainers": [
{
"name": "Alexander Nortung"
}
],
"engines": {
"node": ">=14.19.1 <=20.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"develop": "tsc -w --outDir playground/src/plugins/revalidator",
"release": "bumpp",
"test": "jest --verbose --runInBand --forceExit",
"build": "tsc",
"build:playground": "tsc --outDir playground/src/plugins/revalidator"
},
"license": "MIT"
}