forked from Erenthil/securitytxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.76 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@jahia/securitytxt",
"version": "2.0.0-SNAPSHOT",
"scripts": {
"build": "yarn webpack",
"webpack": "webpack",
"build:analyze": "yarn build --analyze",
"build:production": "yarn build --mode=production",
"build:production-analyze": "yarn build:production --analyze",
"watch": "yarn webpack --watch",
"clean": "rimraf *.log src/main/resources/javascript/apps",
"clean:all": "yarn clean && rimraf node_modules node",
"test": "jest --coverage ./src/javascript",
"tdd": "jest --watch ./src/javascript",
"lint:js": "eslint --ext js,jsx src",
"lint:js:fix": "yarn lint:js --fix src",
"lint:scss": "stylelint \"./src/**/*.scss\"",
"lint:scss:fix": "yarn lint:scss --fix",
"lint": "yarn lint:scss && yarn lint:js",
"lint:fix": "yarn lint:js:fix && yarn lint:scss:fix",
"sync-pom": "sync-pom-version --use-yarn"
},
"description": "security.txt for Jahia",
"main": "index.js",
"repository": "git@github.com:Jahia/securitytxt.git",
"author": "Jahia Customer Support Team <support@jahia.com>",
"license": "MIT",
"jahia": {
"remotes": {
"jahia": "javascript/apps/remoteEntry.js"
}
},
"husky": {
"hooks": {
"pre-commit": "./node/node ./node/yarn/dist/bin/yarn.js lint --max-warnings 1",
"pre-push": " ./node/node ./node/yarn/dist/bin/yarn.js test"
}
},
"dependencies": {
"@apollo/client": "^3.8.2",
"@apollo/react-hooks": "^3",
"@jahia/data-helper": "1.1.14",
"@jahia/moonstone": "^2.16.2",
"@jahia/ui-extender": "^1.1.0",
"@material-ui/core": "^3.9.3",
"formik": "^2.4.5",
"graphql": "^15.8.0",
"graphql-tag": "^2.12.6",
"i18next": "^21.6.14",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-components": "^0.5.1",
"react-dom": "^18.3.1",
"react-i18next": "^11.18.6",
"react-redux": "^7.2.0"
},
"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": "^3.8.2",
"@jahia/eslint-config": "2.1.0",
"@jahia/stylelint-config": "^0.0.3",
"@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": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"postcss-scss": "^4.0.2",
"sass": "^1.52.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^13.7.0",
"sync-pom-version-to-package": "^1.6.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
}
}