-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
133 lines (133 loc) · 3.7 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "strapi-plugin-reactions",
"version": "2.1.2",
"description": "Strapi - Reactions plugin",
"strapi": {
"name": "reactions",
"displayName": "Reactions",
"description": "All-in-One reactions plugin for any Content Type. Simple & flexible.",
"kind": "plugin"
},
"author": {
"name": "VirtusLab",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
"maintainers": [
{
"name": "VirtusLab // Mateusz Ziarko",
"email": "[email protected]",
"url": "https://virtuslab.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/VirtusLab-Open-Source/strapi-plugin-reactions"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"@strapi/plugin-graphql": "^5.7.0",
"@strapi/upload": "^5.7.0",
"@strapi/utils": "^5.7.0",
"@tanstack/react-query": "^5.40.0",
"emoji-picker-react": "^4.5.2",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"qs": "^6.11.2",
"react-intl": "^6.6.8",
"slugify": "^1.6.6",
"zod": "^3.22.5"
},
"devDependencies": {
"@sensinum/strapi-utils": "^1.0.5",
"@strapi/sdk-plugin": "^5.2.8",
"@strapi/strapi": "^5.7.0",
"@strapi/types": "^5.7.0",
"@strapi/typescript-utils": "^5.7.0",
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/lodash": "^4.17.4",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.34",
"codecov": "^3.7.2",
"husky": "7.0.4",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.1.1",
"nexus": "1.3.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-query": "3.39.3",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.8",
"@strapi/strapi": "^5.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn test:unit"
}
},
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.tsx",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"publish:latest": "npm publish --tag latest",
"publish:beta": "npm publish --tag beta",
"build": "yarn clean && strapi-plugin build",
"clean": "rm -rf dist",
"lint": "prettier --check .",
"format": "prettier --write .",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:ci": "CI=true jest --ci --runInBand --verbose --coverage",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"keywords": [
"strapi",
"plugin",
"reactions"
],
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}