-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.89 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
{
"name": "@hcl-software/domino-rest-adminclient",
"version": "1.38.2-SNAPSHOT",
"private": false,
"proxy": "http://localhost:8880",
"homepage": ".",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@lit/react": "^1.0.6",
"@monaco-editor/loader": "^1.4.0",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "6.1.10",
"@mui/lab": "^6.0.0-beta.18",
"@mui/material": "6.4.1",
"@mui/x-data-grid": "^7.24.0",
"@mui/x-date-pickers": "^7.24.0",
"@mui/x-tree-view": "^7.26.0",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^2.5.0",
"@shoelace-style/shoelace": "^2.19.1",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"events": "^3.3.0",
"formik": "^2.4.6",
"lit": "^3.2.1",
"moment": "2.30.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.3",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"styled-components": "^6.1.13",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"uuid": "^11.0.3",
"yup": "^1.6.1"
},
"devDependencies": {
"@swc/core": "^1.10.12",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"@types/react": "^18.3.11",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"cross-env": "^7.0.3",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"jsdom": "^26.0.0",
"ts-jest": "^29.2.5",
"vite": "^6.0.11"
},
"scripts": {
"start": "vite",
"test": "cross-env CI=true jest --coverage --testResultsProcessor=jest-sonar-reporter",
"dev": "vite",
"prebuild": "node updateBuildVersion.js",
"build": "tsc -b && vite build",
"build:win": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "cp -R ./node_modules/monaco-editor/min/vs ./public/monaco-editor-core"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
"browserslist": {
"production": [
">1.0%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "sonar-report.xml",
"indent": 4
}
}