-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.49 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
{
"name": "@jahia/server-settings",
"version": "9.8.0-SNAPSHOT",
"scripts": {
"test": "env-cmd --no-override jest",
"testcli": "jest",
"build": "yarn lint:fix && yarn webpack",
"build:nolint": "yarn webpack",
"dev": "yarn webpack --watch",
"webpack": "node --max_old_space_size=2048 ./node_modules/webpack/bin/webpack.js",
"build:analyze": "yarn build --analyze",
"build:production": "yarn build --mode=production",
"build:production-analyze": "yarn build --mode=production --analyze",
"clean": "rimraf *.log src/main/resources/javascript/apps",
"clean:all": "yarn clean && rimraf node_modules node",
"lint": "./node_modules/.bin/eslint --ext js,jsx .",
"lint:fix": "./node_modules/.bin/eslint --ext js,jsx --fix ."
},
"main": "index.js",
"license": "MIT",
"dx-extends": {
"@jahia/jahia-ui-root": "0.0.1"
},
"jahia": {
"remotes": {
"jahia": "javascript/apps/remoteEntry.js"
}
},
"resolutions": {
"*/**/tar": "4.4.18",
"*/**/trim-newlines": "3.0.1",
"*/**/ejs": "3.1.7",
"*/**/scss-tokenizer": "0.4.3",
"**/glob-parent": "^5.1.2",
"*/**/path-to-regexp": "1.9.0"
},
"dependencies": {
"@jahia/moonstone": "^2.9.1",
"@jahia/ui-extender": "^1.0.6",
"css-loader": "^7.1.2",
"graphql-tag": "^2.12.6",
"i18next": "^19.1.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-apollo": "^3.1.5",
"react-dom": "^16.10.2",
"react-i18next": "^11.2.7",
"react-iframe": "^1.8.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-table": "^7.8.0",
"style-loader": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-classes": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.4",
"@cyclonedx/webpack-plugin": "^3.6.1",
"@jahia/eslint-config": "^1.1.0",
"@jahia/webpack-config": "^1.0.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.37.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1"
}
}