-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
{
"name": "@chartbrew/plugin-strapi",
"version": "2.0.0",
"description": "Chartbrew brings data visualization to your Strapi dashboard",
"keywords": [],
"homepage": "https://github.com/chartbrew/strapi-plugin-chartbrew#readme",
"bugs": {
"url": "https://github.com/chartbrew/strapi-plugin-chartbrew/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chartbrew/strapi-plugin-chartbrew.git"
},
"license": "MIT",
"author": "Razvan Ilin <raz@chartbrew.com>",
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.11",
"@strapi/icons": "^2.0.0-rc.11",
"chart.js": "^3.8.0",
"chartjs-plugin-datalabels": "^2.2.0",
"moment": "^2.29.4",
"nanoid": "^5.0.7",
"react-chartjs-2": "^4.1.0",
"react-grid-layout": "^1.4.4",
"react-intl": "^6.7.2",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.0.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.0.5",
"eslint": "^8.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"strapi": {
"kind": "plugin",
"name": "chartbrew",
"displayName": "Chartbrew",
"description": "Chartbrew brings data visualization to your Strapi dashboard"
}
}