-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"name": "@deenruv/dashboard-widgets-plugin",
"version": "1.0.16",
"homepage": "https://deenruv.com/",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "./dist/plugin-server/index.js",
"exports": {
".": "./dist/plugin-server/index.js",
"./plugin-server": "./dist/plugin-server/index.js",
"./plugin-ui": "./dist/plugin-ui/index.js"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"zeus": "zeus http://localhost:6100/admin-api ./src/plugin-server --td && zeus http://localhost:6100/admin-api ./src/plugin-ui --td"
},
"dependencies": {
"react": "^19.0.0",
"lucide-react": "^0.363.0",
"@deenruv/react-ui-devkit": "workspace:^",
"@deenruv/common": "workspace:^",
"@deenruv/admin-types": "workspace:^",
"@nestjs/common": "^10.3.10",
"@nestjs/graphql": "^12.2.0",
"@tanstack/react-table": "^8.15.3",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"graphql-tag": "^2.12.6",
"graphql-zeus": "^7.0.0",
"react-i18next": "^14.0.5",
"react-router": "^7.13.0",
"recharts": "^2.12.7",
"sonner": "^1.4.41"
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"rimraf": "^5.0.10",
"typescript": "5.3.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@graphql-typed-document-node/core": "^3.2.0"
},
"peerDependencies": {
"@deenruv/core": "^1.0.0",
"typeorm": "^0.3.20"
}
}