-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
146 lines (146 loc) · 5.55 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
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
{
"private": true,
"name": "ipr-client",
"version": "6.31.1",
"keywords": [],
"license": "GPL-3.0",
"sideEffects": false,
"sasslintConfig": "config/sass-lint.yml",
"engines": {
"node": ">=12.20.1",
"npm": ">=6.14.10"
},
"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": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint app --config .eslintrc.js --ext .ts,.tsx,.jsx,.js --quiet"
},
"devDependencies": {
"@babel/core": "~7.22.15",
"@babel/plugin-proposal-optional-chaining": "~7.16.0",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-modules-commonjs": "~7.22.15",
"@babel/preset-env": "~7.22.15",
"@babel/preset-react": "~7.22.15",
"@babel/preset-typescript": "~7.22.15",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-links": "~7.4.0",
"@storybook/builder-webpack5": "^7.4.0",
"@storybook/cli": "^7.4.0",
"@storybook/manager-webpack5": "^6.5.16",
"@svgr/webpack": "~8.1.0",
"@testing-library/jest-dom": "~5.15.0",
"@testing-library/react": "~12.1.2",
"@types/css-mediaquery": "^0.1.2",
"@types/jest-when": "~3.5.2",
"@types/node-sass": "~4.11.4",
"@types/react": "~17.0.33",
"@types/react-dom": "~17.0.10",
"@types/react-router-dom": "~5.3.3",
"@types/sanitize-html": "~2.9.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "~6.6.0",
"@typescript-eslint/parser": "~6.6.0",
"acorn": "~8.10.0",
"apply-loader": "~2.0.0",
"babel-jest": "~29.6.4",
"babel-loader": "~9.1.3",
"babel-plugin-direct-import": "^1.0.0",
"clean-webpack-plugin": "~4.0.0",
"compression-webpack-plugin": "~10.0.0",
"copy-webpack-plugin": "~11.0.0",
"core-js": "~3.32.1",
"css-loader": "~6.8.1",
"css-mediaquery": "^0.1.2",
"css-minimizer-webpack-plugin": "~5.0.1",
"eslint": "~8.48.0",
"eslint-config-airbnb": "~19.0.4",
"eslint-config-airbnb-typescript": "~17.1.0",
"eslint-import-resolver-typescript": "~3.6.0",
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-jsx-a11y": "~6.7.1",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "~4.6.0",
"exports-loader": "~4.0.0",
"file-loader": "~6.2.0",
"history": "^5.3.0",
"html-loader": "~4.2.0",
"html-webpack-plugin": "~5.5.3",
"jest": "~29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-junit": "~16.0.0",
"react-test-renderer": "~17.0.2",
"sass": "~1.66.1",
"sass-loader": "~13.3.2",
"style-loader": "~3.3.3",
"typescript": "~5.2.2",
"webpack-bundle-analyzer": "~4.9.1",
"webpack-cli": "~5.1.4",
"webpack-dev-server": "~4.15.1",
"whatwg-fetch": "~3.6.18"
},
"dependencies": {
"@ag-grid-community/client-side-row-model": "~25.3.0",
"@ag-grid-community/core": "^25.3.0",
"@ag-grid-community/csv-export": "~25.3.0",
"@ag-grid-community/react": "~25.3.0",
"@emotion/react": "~11.11.1",
"@emotion/styled": "~11.11.0",
"@fontsource/roboto": "~5.0.8",
"@mui/icons-material": "~5.14.8",
"@mui/lab": "~5.0.0-alpha.143",
"@mui/material": "~5.14.8",
"@mui/styles": "~5.14.7",
"@mui/system": "~5.14.8",
"@storybook/addon-actions": "~7.4.0",
"@storybook/react": "^7.4.0",
"@tiptap/extension-underline": "^2.2.3",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@types/prop-types": "~15.7.5",
"chart.js": "~3.6.0",
"chartjs-plugin-datalabels": "~2.2.0",
"fetch-intercept": "~2.4.0",
"jest-when": "~3.6.0",
"jss": "~10.10.0",
"jwt-decode": "~3.1.2",
"keycloak-js": "~22.0.1",
"lodash": "^4.17.21",
"minimist": "~1.2.8",
"notistack": "~3.0.1",
"pagedjs": "^0.5.0-beta.0",
"prop-types": "~15.8.1",
"react": "~17.0.2",
"react-chartjs-2": "~3.3.0",
"react-dom": "~17.0.2",
"react-hook-form": "^7.40.0",
"react-inlinesvg": "^4.0.5",
"react-jss": "~10.6.0",
"react-router-dom": "~5.1.2",
"react-svg-pan-zoom": "~3.8.1",
"react-virtualized-auto-sizer": "~1.0.20",
"sanitize-html": "~2.11.0",
"svg-pan-zoom": "~3.6.1",
"use-debounce": "^9.0.4",
"uuid": "^10.0.0",
"webpack": "^5.88.2",
"webpack-merge": "~5.9.0"
}
}