-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 5.89 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 5.89 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
{
"private": true,
"name": "ipr-client",
"version": "7.6.1",
"keywords": [],
"license": "GPL-3.0",
"sideEffects": false,
"sasslintConfig": "config/sass-lint.yml",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"browserslist": "> 0.25%, not dead",
"scripts": {
"env": "chmod +x ./config/env.sh && ./config/env.sh && mv ipr-env-config.js ./app",
"build": "npm run build:prod",
"build:docker": "webpack --mode production --config ./config/webpack/webpack.docker.js",
"build:prod": "webpack --config ./config/webpack/webpack.prod.js",
"build:dev": "webpack --mode production --config ./config/webpack/webpack.dev.js",
"build:staging": "webpack --mode production --config ./config/webpack/webpack.staging.js",
"start": "npm run env; npm run start:dev",
"start:demo": "npm run env; webpack-dev-server --env IS_DEMO=true --config ./config/webpack/webpack.dev.js",
"start:local": "npm run env; webpack-dev-server --config ./config/webpack/webpack.local.js",
"start:dev": "npm run env; webpack-dev-server --config ./config/webpack/webpack.dev.js",
"start:prod": "npm run env; webpack-dev-server --config ./config/webpack/webpack.prod.js",
"start:staging": "npm run env; webpack-dev-server --config ./config/webpack/webpack.staging.js",
"test": "NODE_ENV=test jest --config config/jest/jest.config.js --maxWorkers=100%",
"test-local": "NODE_ENV=test jest --config config/jest/jest.config.js --maxWorkers=100% --watch --coverage=false",
"analyze": "npm run env; webpack-dev-server --env ANALYZE=true --config ./config/webpack/webpack.prod.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint app --config .eslintrc.js --ext .ts,.tsx,.jsx,.js --quiet",
"postinstall": "patch-package",
"generate:querykeys": "tsx scripts/generateQueryKeys.ts && eslint app/queries/queryKeys.ts --config .eslintrc.js --fix",
"generate:queryhooks": "tsx scripts/generateQueryHooks.ts && eslint app/queries/get.ts --config .eslintrc.js --fix"
},
"devDependencies": {
"@babel/core": "~7.29.0",
"@babel/plugin-proposal-optional-chaining": "~7.16.0",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-modules-commonjs": "~7.28.6",
"@babel/preset-env": "~7.29.0",
"@babel/preset-react": "~7.28.5",
"@babel/preset-typescript": "~7.28.5",
"@storybook/addon-actions": "~8.6.14",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-links": "~8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-webpack5": "^8.6.14",
"@storybook/test": "^8.6.17",
"@svgr/webpack": "~8.1.0",
"@testing-library/jest-dom": "~5.15.0",
"@testing-library/react": "~14.3.0",
"@types/css-mediaquery": "^0.1.4",
"@types/jest-when": "~3.5.5",
"@types/lodash": "^4.17.24",
"@types/node-sass": "~4.11.8",
"@types/react": "~18.3.0",
"@types/react-dom": "~18.3.0",
"@types/react-router-dom": "~5.3.3",
"@types/sanitize-html": "~2.9.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"acorn": "~8.16.0",
"apply-loader": "~2.0.0",
"babel-jest": "~30.2.0",
"babel-loader": "~9.1.3",
"babel-plugin-direct-import": "^1.0.0",
"clean-webpack-plugin": "~4.0.0",
"compression-webpack-plugin": "~12.0.0",
"copy-webpack-plugin": "~14.0.0",
"core-js": "~3.48.0",
"css-loader": "~7.1.4",
"css-mediaquery": "^0.1.2",
"css-minimizer-webpack-plugin": "~8.0.0",
"eslint": "~8.57.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-airbnb-typescript": "~18.0.0",
"eslint-import-resolver-typescript": "~3.9.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jsx-a11y": "~6.10.2",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "~4.6.2",
"exports-loader": "~5.0.0",
"file-loader": "~6.2.0",
"history": "^5.3.0",
"html-loader": "~5.1.0",
"html-webpack-plugin": "~5.6.3",
"jest": "~30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "~16.0.0",
"patch-package": "^8.0.1",
"react-test-renderer": "~18.3.1",
"sass": "~1.86.0",
"sass-embedded": "^1.98.0",
"sass-loader": "~16.0.7",
"storybook": "^8.6.18",
"style-loader": "~4.0.0",
"typescript": "~5.7.3",
"webpack-bundle-analyzer": "~5.2.0",
"webpack-cli": "~6.0.1",
"webpack-dev-server": "~5.2.3",
"whatwg-fetch": "~3.6.20"
},
"dependencies": {
"@ag-grid-community/client-side-row-model": "~29.0.0",
"@ag-grid-community/core": "~29.0.0",
"@ag-grid-community/csv-export": "~29.0.0",
"@ag-grid-community/react": "~29.0.0",
"@ag-grid-community/styles": "~29.0.0",
"@emotion/react": "~11.11.4",
"@emotion/styled": "~11.11.5",
"@fontsource/roboto": "~5.0.15",
"@mui/icons-material": "~5.14.19",
"@mui/material": "~5.14.20",
"@mui/system": "~5.14.20",
"@tiptap/extension-underline": "^2.27.2",
"@tiptap/pm": "^2.27.2",
"@tiptap/react": "^2.27.2",
"@tiptap/starter-kit": "^2.27.2",
"@types/prop-types": "~15.7.15",
"chart.js": "~3.6.0",
"chartjs-plugin-datalabels": "~2.2.0",
"fetch-intercept": "~2.4.0",
"jest-when": "~3.7.0",
"jwt-decode": "~3.1.2",
"keycloak-js": "~22.0.5",
"lodash": "^4.17.23",
"minimist": "~1.2.8",
"notistack": "~3.0.2",
"pagedjs": "^0.5.0-beta.2",
"prop-types": "~15.8.1",
"react": "~18.3.1",
"react-chartjs-2": "~4.3.1",
"react-dom": "~18.3.1",
"react-hook-form": "^7.71.2",
"react-inlinesvg": "^4.2.0",
"react-query": "^3.39.3",
"react-router-dom": "~5.1.2",
"react-svg-pan-zoom": "~3.13.1",
"react-virtualized-auto-sizer": "~1.0.26",
"sanitize-html": "~2.17.1",
"svg-pan-zoom": "~3.6.2",
"use-debounce": "^10.0.0",
"uuid": "^10.0.0",
"webpack": "^5.105.4",
"webpack-merge": "~6.0.1",
"worker-loader": "^3.0.8"
}
}