-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.68 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
{
"name": "@jahia/site-settings",
"version": "8.9.0-SNAPSHOT",
"husky": {
"hooks": {
"pre-push": "yarn lint:fix"
}
},
"scripts": {
"test": "env-cmd --no-override jest",
"testcli": "jest",
"build": "yarn lint:fix && yarn webpack",
"build:nolint": "yarn webpack",
"watch": "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 . && stylelint \"./src/**/*.scss\"",
"lint:fix": "./node_modules/.bin/eslint --ext js,jsx --fix . && stylelint --fix \"./src/**/*.scss\"",
"sync-pom": "sync-pom-version --use-yarn"
},
"main": "index.js",
"license": "MIT",
"jahia": {
"remotes": {
"jahia": "javascript/apps/remoteEntry.js"
}
},
"resolutions": {
"scss-tokenizer": "^0.4.2",
"loader-utils": "^2.0.3"
},
"dependencies": {
"@apollo/client": "^3.7.17",
"@jahia/data-helper": "^1.1.4",
"@jahia/moonstone": "^2.5.12",
"@jahia/ui-extender": "^1.1.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"file-loader": "^6.2.0",
"graphql-tag": "^2.12.6",
"i18next": "^19.3.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-i18next": "^13.0.2",
"react-redux": "^8.1.1"
},
"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/stylelint-config": "^0.0.3",
"@jahia/webpack-config": "^1.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^3.2.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-json": "^2.0.1",
"husky": "^3.0.9",
"path": "^0.12.7",
"rimraf": "^3.0.0",
"sass": "^1.66.1",
"sass-loader": "^12.1.0",
"style-loader": "^1.0.0",
"stylelint": "^13.7.1",
"sync-pom-version-to-package": "^1.6.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0"
}
}