-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 7.02 KB
/
package.json
File metadata and controls
177 lines (177 loc) · 7.02 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "thecombine",
"version": "2.0.0",
"license": "MIT",
"private": true,
"source": "public/index.html",
"scripts": {
"backend": "dotnet watch --project Backend/BackendFramework.csproj",
"build": "parcel build",
"build:analyze": "npm run build -- --reporter @parcel/reporter-bundle-analyzer",
"database": "node scripts/startDatabase.js",
"drop-database": "tsc scripts/dropDB.ts && node scripts/dropDB.js",
"find-circular-deps": "npx --ignore-scripts -y madge -c src/index.tsx --ts-config tsconfig.json",
"fmt-backend": " dotnet format && dotnet format Backend.Tests",
"fmt-backend-check": "dotnet format --verify-no-changes && dotnet format --verify-no-changes Backend.Tests",
"fmt-frontend": " prettier --write \"./{.github,.vscode,deploy,docs,maintenance,public,scripts,src}/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"fmt-frontend-check": "prettier --check \"./{.github,.vscode,deploy,docs,maintenance,public,scripts,src}/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"prefrontend": "node scripts/frontendScripts.js",
"frontend": "parcel --open",
"gen-backend-coverage-report": "tsc scripts/genBackendCoverageReport.ts && node scripts/genBackendCoverageReport.js",
"license-report-backend": "nuget-license --include-transitive --input ./Backend/BackendFramework.csproj --output JsonPretty > docs/user_guide/assets/licenses/backend_licenses.json | exit 0",
"postlicense-report-backend": "tsc scripts/createBackendLicenses.ts && node scripts/createBackendLicenses.js",
"license-summary-backend": "nuget-license --include-transitive --input ./Backend/BackendFramework.csproj",
"license-frontend": "npx --ignore-scripts -y license-checker-rseidelsohn --production --excludePrivatePackages",
"license-report-frontend": " npm run license-frontend -- --plainVertical --out docs/user_guide/assets/licenses/frontend_licenses.txt",
"license-summary-frontend": "npm run license-frontend -- --summary",
"lint": "eslint --max-warnings=0 --ext js,jsx,ts,tsx src",
"lint:fix-layout": "npm run lint -- --fix --fix-type layout,suggestion",
"set-admin-user": "tsc scripts/setAdminUser.ts && node scripts/setAdminUser.js",
"start": "npm i --ignore-scripts && run-p backend database frontend",
"test": "run-s test-backend test-frontend",
"test-backend": " dotnet test Backend.Tests/Backend.Tests.csproj",
"test-backend:coverage": "dotnet test Backend.Tests/Backend.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:Threshold=77",
"test-backend:integration": "dotnet test Backend.Tests/Backend.Tests.csproj --filter \"TestCategory=IntegrationTest\"",
"test-backend:unit": "dotnet test Backend.Tests/Backend.Tests.csproj --filter \"TestCategory!=IntegrationTest\"",
"test-frontend": " node scripts/jestTest.js",
"test-frontend:coverage": "node scripts/jestTest.js --coverage --watchAll=false",
"test-frontend:debug": " node --inspect-brk scripts/jestTest.js --runInBand --no-cache",
"wordlist": "npx --ignore-scripts -y hunspell-reader words"
},
"dependencies": {
"@emotion/react": "~11.14.0",
"@emotion/styled": "~11.14.0",
"@hello-pangea/dnd": "~18.0.1",
"@loadable/component": "~5.16.4",
"@marsidev/react-turnstile": "~1.4.1",
"@microsoft/signalr": "~9.0.6",
"@mui/icons-material": "~6.4.6",
"@mui/material": "~6.5.0",
"@mui/x-date-pickers": "~7.29.4",
"@redux-devtools/extension": "~3.3.0",
"@reduxjs/toolkit": "~2.11.2",
"axios": "~1.13.5",
"chart.js": "~4.5.1",
"crypto-js": "~4.2.0",
"dayjs": "~1.11.19",
"history": "~5.3.0",
"http-status-codes": "~2.3.0",
"i18next": "~25.7.3",
"i18next-browser-languagedetector": "~8.2.0",
"i18next-http-backend": "~3.0.2",
"js-base64": "~3.7.7",
"levenshtein-search": "~0.1.2",
"material-react-table": "~3.2.1",
"motion": "~12.23.26",
"mui-language-picker": "~2.6.1",
"notistack": "~3.0.2",
"nspell": "~2.1.5",
"punycode": "~2.3.1",
"react": "~18.3.1",
"react-chartjs-2": "~5.3.0",
"react-dom": "~18.3.1",
"react-i18next": "~16.5.0",
"react-modal": "~3.16.3",
"react-redux": "~9.2.0",
"react-router": "~7.12.0",
"react-toastify": "~9.1.3",
"recordrtc": "~5.6.2",
"redux": "~5.0.1",
"redux-persist": "~6.0.0",
"redux-thunk": "~3.1.0",
"ts-key-enum": "~2.0.13",
"uuid": "~11.1.0"
},
"devDependencies": {
"@babel/core": "~7.29.0",
"@babel/plugin-transform-private-property-in-object": "~7.28.6",
"@babel/preset-env": "~7.29.2",
"@babel/preset-react": "~7.28.5",
"@babel/preset-typescript": "~7.28.5",
"@parcel/packager-raw-url": "~2.16.4",
"@parcel/reporter-bundle-analyzer": "~2.16.4",
"@parcel/transformer-webmanifest": "~2.16.4",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "~16.3.2",
"@testing-library/user-event": "~14.6.1",
"@types/crypto-js": "~4.2.2",
"@types/css-mediaquery": "~0.1.4",
"@types/jest": "~30.0.0",
"@types/loadable__component": "~5.13.9",
"@types/node": "~22.19.15",
"@types/nspell": "~2.1.6",
"@types/react": "~18.3.18",
"@types/react-beautiful-dnd": "~13.1.8",
"@types/react-dom": "~18.3.5",
"@types/react-modal": "~3.16.3",
"@types/recordrtc": "~5.6.14",
"@types/redux-mock-store": "~1.5.0",
"babel-jest": "~30.3.0",
"babel-plugin-transform-import-meta": "~2.3.3",
"buffer": "~6.0.3",
"css-mediaquery": "~0.1.2",
"dotenv": "~16.6.1",
"dotenv-expand": "~12.0.3",
"eslint": "~9.38.0",
"eslint-import-resolver-typescript": "~4.4.4",
"eslint-plugin-import": "~2.32.0",
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-react-hooks": "~7.0.1",
"eslint-plugin-unused-imports": "~4.4.1",
"fs-extra": "~11.3.4",
"globals": "~16.5.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~30.3.0",
"jest-canvas-mock": "~2.5.2",
"jest-environment-jsdom": "~30.3.0",
"jest-resolve": "~30.3.0",
"jest-watch-typeahead": "~3.0.1",
"npm-run-all": "~4.1.5",
"parcel": "~2.16.4",
"parcel-reporter-static-files-copy": "~1.5.3",
"path-browserify": "~1.0.1",
"prettier": "~3.8.1",
"process": "~0.11.10",
"react-app-polyfill": "~3.0.0",
"redux-mock-store": "~1.5.5",
"typescript": "~5.9.3",
"typescript-eslint": "~8.58.0"
},
"prettier": {
"overrides": [
{
"files": "**/*.md",
"options": {
"proseWrap": "always",
"printWidth": 120
}
}
],
"trailingComma": "es5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"staticFiles": [
{
"staticOutPath": "dictionaries",
"staticPath": "public/dictionaries"
},
{
"staticOutPath": "locales",
"staticPath": "public/locales"
}
],
"volta": {
"node": "22.17.0"
}
}