This repository was archived by the owner on Jul 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@jahia/report-users-and-groups",
"version": "2.0.0-SNAPSHOT",
"scripts": {
"build": "yarn webpack",
"webpack": "webpack",
"build:production": "yarn build --mode=production",
"watch": "yarn webpack --watch",
"clean": "rimraf *.log src/main/resources/javascript/apps",
"clean:all": "yarn clean && rimraf node_modules node",
"lint:js": "eslint --ext js,jsx src/javascript",
"lint:js:fix": "yarn lint:js --fix",
"lint": "yarn lint:js",
"lint:fix": "yarn lint:js:fix",
"sync-pom": "sync-pom-version --use-yarn"
},
"description": "Report users and groups for Jahia",
"main": "index.js",
"author": "Jahia Customer Support Team <support@jahia.com>",
"license": "MIT",
"jahia": {
"remotes": {
"jahia": "javascript/apps/remoteEntry.js"
}
},
"dependencies": {
"@apollo/client": "^3.8.2",
"@jahia/moonstone": "^2.16.2",
"@jahia/ui-extender": "^1.1.0",
"graphql": "^15.8.0",
"i18next": "^21.6.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^11.18.6"
},
"resolutions": {
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"fast-uri": "^3.1.2",
"ip-address": "^10.1.1",
"js-yaml": "^4.1.1",
"normalize-package-data": "^7.0.0",
"serialize-javascript": "^7.0.5"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@cyclonedx/webpack-plugin": "^5.3.2",
"@jahia/eslint-config": "2.1.0",
"@jahia/webpack-config": "^1.1.0",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"rimraf": "^5.0.0",
"sass": "^1.52.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"sync-pom-version-to-package": "^1.6.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
}
}