-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 4.04 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
{
"name": "@jahia/app-shell",
"version": "3.4.0-SNAPSHOT",
"scripts": {
"build": "yarn webpack:appshell --mode=development",
"prebuild:production": "yarn lint && yarn test",
"build:production": "yarn webpack:appshell --mode=production",
"webpack:appshell": "node --max_old_space_size=2048 ./node_modules/webpack/bin/webpack.js",
"watch": "yarn webpack --watch",
"clean": "rimraf *.log src/main/resources/javascript/apps",
"clean:all": "yarn clean && rimraf node_modules node target",
"lint": "eslint --ext js,jsx .",
"lint:fix": "eslint --ext js,jsx --fix .",
"test": "jest --ci --run-in-band --coverage --roots=src/",
"tdd": "jest --watch",
"sync-pom": "sync-pom-version --use-yarn"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"description": "Jahia app-shell - the heart of modularization and micro-front-end",
"main": "index.js",
"repository": "[email protected]:Jahia/app-shell.git",
"author": "Jahia Core Team <[email protected]>",
"license": "SEE LICENSE IN LICENSE.txt FILE",
"dependencies": {
"@apollo/client": "^3.5.10",
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.12.5",
"@jahia/data-helper": "^1.0.4",
"@jahia/design-system-kit": "^1.2.1",
"@jahia/icons": "^1.1.1",
"@jahia/moonstone": "^1.0.0",
"@jahia/moonstone-alpha": "^1.0.0",
"@jahia/react-material": "^3.0.3",
"@jahia/ui-extender": "^1.0.3",
"dayjs": "^1.9.6",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"gud": "^1.0.0",
"i18next": "^19.0.3",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.21",
"process": "^0.11.10",
"react": "^18.2.0",
"react-apollo": "^3.1.5",
"react-dom": "^18.2.0",
"react-i18next": "^11.2.7",
"react-redux": "^8.0.5",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-batched-actions": "^0.4.1",
"redux-thunk": "^2.3.0",
"rxjs": "^6.3.3",
"subscriptions-transport-ws": "^0.11.0",
"webpack4": "npm:webpack@^4.42.0",
"whatwg-fetch": "^3.0.0",
"zen-observable": "^0.8.15"
},
"resolutions": {
"css-loader/loader-utils": "^1.4.2",
"file-loader/loader-utils": "^1.4.2",
"graphql": "15.4.0",
"@jahia/data-helper/graphql": "^15.4.0",
"node-fetch": "^2.6.1",
"minimist": "^1.2.6",
"style-loader/loader-utils": "^1.4.2",
"watchpack": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-external-helpers": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@cyclonedx/webpack-plugin": "^3.6.1",
"@jahia/eslint-config": "^1.1.0",
"@jahia/test-framework": "^1.1.5",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-imports": "^1.5.1",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^3.4.2",
"eslint": "^7.9.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"file-loader": "^3.0.1",
"husky": "^3.0.5",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.5.0",
"rimraf": "^2.6.2",
"sass": "^1.52.1",
"source-map-loader": "^1.0.0",
"style-loader": "^0.23.1",
"sync-pom-version-to-package": "^1.6.1",
"transform-imports": "^2.0.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^1.7.2"
}
}