-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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
{
"name": "@jahia/tools",
"version": "5.0.0-SNAPSHOT",
"husky": {
"hooks": {
"pre-push": "yarn lint:fix"
}
},
"scripts": {
"test": "env-cmd --no-override jest",
"testcli": "jest",
"build": "yarn lint && 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 .",
"sync-pom": "sync-pom-version --use-yarn"
},
"main": "index.js",
"license": "MIT",
"dependencies": {
"@fancyapps/ui": "^5.0.24",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"datatables.net-bs5": "^1.13.6",
"jquery": "^3.7.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-classes": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@babel/runtime": "^7.23.2",
"@cyclonedx/webpack-plugin": "^3.8.2",
"@jahia/eslint-config": "^2.1.2",
"@jahia/webpack-config": "^1.1.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"path": "^0.12.7",
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"sync-pom-version-to-package": "^1.6.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4"
}
}