-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "centurion-erp-ui",
"version": "0.12.0",
"private": true,
"license": "AGPL-3.0-only",
"dependencies": {
"@patternfly/patternfly": "^6.6.0",
"@patternfly/react-component-groups": "^6.5.0",
"@patternfly/react-core": "^6.6.0",
"@patternfly/react-drag-drop": "^6.6.0",
"@patternfly/react-icons": "^6.6.0",
"@patternfly/react-table": "^6.6.0",
"clipboard": "^2.0.11",
"dompurify": "^3.4.12",
"highlight.js": "^11.11.1",
"markdown-it": "^14.3.0",
"markdown-it-admon": "^1.0.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-front-matter": "^0.2.4",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"nunjucks": "^3.2.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.18.1",
"web-vitals": "^5.1.0",
"yaml": "^2.9.0"
},
"scripts": {
"start": "webpack serve --mode development --no-open",
"build": "webpack --mode production",
"docs-api": "typedoc --skipErrorChecking",
"lint": "eslint src types",
"lint-junit": "eslint src types --format junit --output-file artifacts/eslint.junit.xml",
"test": "jest",
"test-unit": "jest --json --outputFile=artifacts/test_results.json --testPathPatterns='__test__/unit'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"babel-jest": "^30.3.0",
"babel-loader": "^10.0.0",
"chromedriver": "^133.0.3",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"dotenv-webpack": "^8.1.1",
"eslint": "^10.3.0",
"eslint-formatter-junit": "^9.0.1",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-plugin-typedoc": "^1.3.6",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.10.0",
"react-refresh": "^0.18.0",
"react-test-renderer": "^19.2.4",
"selenium-webdriver": "^4.43.0",
"serve": "^14.2.5",
"style-loader": "^4.0.0",
"text-encoding": "^0.7.0",
"typedoc": "^0.28.20",
"typedoc-plugin-merge-modules": "^7.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"whatwg-fetch": "^3.6.20"
}
}