eehitus-data-correction-ui 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.LICENSE.txt +9 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.LICENSE.txt +9 -0
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.LICENSE.txt +9 -0
- package/dist/l10n/eehitus-building-project-file-ui-combined_translations_en.json +1 -0
- package/dist/l10n/eehitus-building-project-file-ui-combined_translations_et.json +1 -0
- package/dist/l10n/eehitus-building-project-file-ui-combined_translations_ru.json +1 -0
- package/dist/types/App.d.ts +10 -0
- package/dist/types/NotFound.d.ts +9 -0
- package/dist/types/__mocks__/fileMock.d.ts +2 -0
- package/dist/types/__tests__/Correction.test.d.ts +1 -0
- package/dist/types/__tests__/Error.test.d.ts +1 -0
- package/dist/types/__tests__/Problem.test.d.ts +1 -0
- package/dist/types/__tests__/Project.test.d.ts +1 -0
- package/dist/types/__tests__/Upload.test.d.ts +1 -0
- package/dist/types/component/components/ConfirmProblem.d.ts +19 -0
- package/dist/types/component/components/CreateCorrection.d.ts +47 -0
- package/dist/types/component/components/CreateError.d.ts +22 -0
- package/dist/types/component/components/CreateErrorBasedAddress.d.ts +89 -0
- package/dist/types/component/components/CreateErrorBasedEHRCode.d.ts +60 -0
- package/dist/types/component/components/CreateProblem.d.ts +45 -0
- package/dist/types/component/components/CreateProject.d.ts +41 -0
- package/dist/types/component/components/DecideProblem.d.ts +19 -0
- package/dist/types/component/components/DeleteCorrection.d.ts +18 -0
- package/dist/types/component/components/DeleteError.d.ts +20 -0
- package/dist/types/component/components/DeleteProblem.d.ts +19 -0
- package/dist/types/component/components/DeleteProject.d.ts +18 -0
- package/dist/types/component/components/DownloadProblem.d.ts +18 -0
- package/dist/types/component/components/EditCorrection.d.ts +46 -0
- package/dist/types/component/components/EditError.d.ts +42 -0
- package/dist/types/component/components/EditProblem.d.ts +59 -0
- package/dist/types/component/components/EditProject.d.ts +42 -0
- package/dist/types/component/components/FilterCorrection.d.ts +40 -0
- package/dist/types/component/components/FilterError.d.ts +43 -0
- package/dist/types/component/components/FilterProblem.d.ts +44 -0
- package/dist/types/component/components/FilterProject.d.ts +34 -0
- package/dist/types/component/components/Loader.d.ts +10 -0
- package/dist/types/component/components/SendMessage.d.ts +50 -0
- package/dist/types/component/interface.d.ts +52 -0
- package/dist/types/component/pages/Correction.d.ts +55 -0
- package/dist/types/component/pages/Error.d.ts +64 -0
- package/dist/types/component/pages/Problem.d.ts +74 -0
- package/dist/types/component/pages/Project.d.ts +49 -0
- package/dist/types/component/pages/Upload.d.ts +67 -0
- package/dist/types/component/utils.d.ts +4 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/indexExport.d.ts +6 -0
- package/dist/types/serviceWorker.d.ts +7 -0
- package/dist/types/setupTests.d.ts +1 -0
- package/dist/types/test-utils.d.ts +5 -0
- package/package.json +220 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Component } from 'react';
|
|
2
|
+
import { FilterProjectValues, FilterValue } from '../interface';
|
|
3
|
+
interface Props {
|
|
4
|
+
APIURL: string;
|
|
5
|
+
config: any;
|
|
6
|
+
role: string;
|
|
7
|
+
}
|
|
8
|
+
interface State {
|
|
9
|
+
content: object[];
|
|
10
|
+
filterValuesProjektijuht: FilterValue[];
|
|
11
|
+
filterValuesProjektOlek: FilterValue[];
|
|
12
|
+
loading: boolean;
|
|
13
|
+
pager: {
|
|
14
|
+
limit: number;
|
|
15
|
+
offset: number;
|
|
16
|
+
sort: string;
|
|
17
|
+
total: number;
|
|
18
|
+
};
|
|
19
|
+
showMessage: boolean;
|
|
20
|
+
}
|
|
21
|
+
export default class Project extends Component<Props, State> {
|
|
22
|
+
data: Array<any>;
|
|
23
|
+
filterProjectValues: FilterProjectValues;
|
|
24
|
+
message: {
|
|
25
|
+
content: string;
|
|
26
|
+
theme: string;
|
|
27
|
+
};
|
|
28
|
+
numberOfLoadings: number;
|
|
29
|
+
paginationChanges: boolean;
|
|
30
|
+
constructor(props: any);
|
|
31
|
+
componentDidMount(): void;
|
|
32
|
+
catchError(error: any): void;
|
|
33
|
+
changeNumberOfLoadings(change: number): void;
|
|
34
|
+
endGetDataFilterProjektijuht(response: any): void;
|
|
35
|
+
endGetDataFilterProjektOlek(response: any): void;
|
|
36
|
+
endGetDataProjekt(response: any): void;
|
|
37
|
+
getDataProjekt(): void;
|
|
38
|
+
onDismissMessage(): void;
|
|
39
|
+
onPaginationReload(pager: {
|
|
40
|
+
limit: number;
|
|
41
|
+
offset: number;
|
|
42
|
+
sort: string;
|
|
43
|
+
total: number;
|
|
44
|
+
}): void;
|
|
45
|
+
showMessage(content: string, theme: string): void;
|
|
46
|
+
submitValues(values: FilterProjectValues): void;
|
|
47
|
+
render(): JSX.Element;
|
|
48
|
+
}
|
|
49
|
+
export {};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { Component } from 'react';
|
|
2
|
+
import { FilterValue } from '../interface';
|
|
3
|
+
interface Props {
|
|
4
|
+
APIURL: string;
|
|
5
|
+
config: any;
|
|
6
|
+
role: string;
|
|
7
|
+
}
|
|
8
|
+
interface State {
|
|
9
|
+
displayConstructionType: boolean;
|
|
10
|
+
displayFile: boolean;
|
|
11
|
+
displayProbleem: boolean;
|
|
12
|
+
displayReference: boolean;
|
|
13
|
+
errorMessages: {
|
|
14
|
+
operatsioon: string;
|
|
15
|
+
probleem_id: string;
|
|
16
|
+
projekt_id: string;
|
|
17
|
+
rajatis_hoone_list: string;
|
|
18
|
+
};
|
|
19
|
+
filterValuesOperatsioon: FilterValue[];
|
|
20
|
+
filterValuesProbleem: FilterValue[];
|
|
21
|
+
filterValuesProjekt: FilterValue[];
|
|
22
|
+
loading: boolean;
|
|
23
|
+
showMessage: boolean;
|
|
24
|
+
}
|
|
25
|
+
export default class Upload extends Component<Props, State> {
|
|
26
|
+
colClassName: string;
|
|
27
|
+
dataProbleem: {
|
|
28
|
+
vali_id: string;
|
|
29
|
+
vali_nimi: string;
|
|
30
|
+
vali_tabel: string;
|
|
31
|
+
vali_vordlus: string;
|
|
32
|
+
};
|
|
33
|
+
labelCol: {
|
|
34
|
+
sm: number;
|
|
35
|
+
md: number;
|
|
36
|
+
lg: number;
|
|
37
|
+
};
|
|
38
|
+
message: {
|
|
39
|
+
content: any;
|
|
40
|
+
theme: string;
|
|
41
|
+
};
|
|
42
|
+
numberOfLoadings: number;
|
|
43
|
+
values: {
|
|
44
|
+
operatsioon: string | null;
|
|
45
|
+
probleem_id: number | null;
|
|
46
|
+
projekt_id: number | null;
|
|
47
|
+
rajatis_hoone_list: string | null;
|
|
48
|
+
};
|
|
49
|
+
constructor(props: any);
|
|
50
|
+
componentDidMount(): void;
|
|
51
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
52
|
+
catchError(error: any): void;
|
|
53
|
+
changeNumberOfLoadings(change: number): void;
|
|
54
|
+
changeValue(fieldName: string, newValue: number | string): void;
|
|
55
|
+
create(file: any): void;
|
|
56
|
+
downloadExample(): void;
|
|
57
|
+
downloadMall(): void;
|
|
58
|
+
endCreate(response: any): void;
|
|
59
|
+
endGetDataFilterOperatsioon(response: any): void;
|
|
60
|
+
endGetDataFilterProbleem(response: any): void;
|
|
61
|
+
endGetDataFilterProjekt(response: any): void;
|
|
62
|
+
endGetDataProbleem(response: any): void;
|
|
63
|
+
onDismissMessage(): void;
|
|
64
|
+
showMessage(content: any, theme: string): void;
|
|
65
|
+
render(): JSX.Element;
|
|
66
|
+
}
|
|
67
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare function compare(a: object, b: object, property: string): 1 | -1 | 0;
|
|
2
|
+
export declare function downloadFile(data: Array<any>): void;
|
|
3
|
+
export declare function isADateGreaterThanB(dateA: string, dateB: string): false | 1 | -1 | 0;
|
|
4
|
+
export declare function isValidDate(dateString: string): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@tehik-ee/tedi-design-system/index.css';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import Correction from './component/pages/Correction';
|
|
2
|
+
import Error from './component/pages/Error';
|
|
3
|
+
import Problem from './component/pages/Problem';
|
|
4
|
+
import Project from './component/pages/Project';
|
|
5
|
+
import Upload from './component/pages/Upload';
|
|
6
|
+
export { Correction, Error, Problem, Project, Upload };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom/extend-expect';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare function render(ui: any, { locale, ...renderOptions }?: {
|
|
2
|
+
locale?: string | undefined;
|
|
3
|
+
}): import("@testing-library/react").RenderResult<typeof import("@testing-library/dom/types/queries"), HTMLElement, HTMLElement>;
|
|
4
|
+
export * from '@testing-library/react';
|
|
5
|
+
export { render };
|
package/package.json
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eehitus-data-correction-ui",
|
|
3
|
+
"version": "1.1.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "./dist/index.cjs.js",
|
|
6
|
+
"module": "./dist/index.esm.js",
|
|
7
|
+
"umd:main": "./dist/index.umd.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.esm.js",
|
|
11
|
+
"require": "./dist/index.cjs.js"
|
|
12
|
+
},
|
|
13
|
+
"./dist/l10n/*": "./dist/l10n/*"
|
|
14
|
+
},
|
|
15
|
+
"types": "./dist/types/indexExport.d.ts",
|
|
16
|
+
"files": [
|
|
17
|
+
"./dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"start": "cross-env ESLINT_NO_DEV_ERRORS=true PORT=3000 NODE_ENV=development GENERATE_SOURCEMAP=true FAST_REFRESH=true webpackEnv=development node scripts/start.cjs",
|
|
21
|
+
"build-webpack": "cross-env DISABLE_ESLINT_PLUGIN=true NODE_OPTIONS='--max_old_space_size=8192' GENERATE_SOURCEMAP=true node scripts/build.cjs",
|
|
22
|
+
"cibuild": "rm -rf dist && npm run build:ci && npm run build:types",
|
|
23
|
+
"cibuild:debug": "cross-env DEBUG=true npm run cibuild",
|
|
24
|
+
"build:ci": "cross-env DISABLE_ESLINT_PLUGIN=true NODE_ENV=production webpack --config config/webpackLib.config.cjs --mode production",
|
|
25
|
+
"build:types": "tsc --project tsconfig.lib.json",
|
|
26
|
+
"prepare": "husky install",
|
|
27
|
+
"test": "jest --config config/jest/jest.config.cjs --watchAll",
|
|
28
|
+
"test:coverage": "jest --config config/jest/jest.config.cjs --coverage --watchAll",
|
|
29
|
+
"eslint": "eslint",
|
|
30
|
+
"lint": "npx prettier 'src/**/*.{js,ts,tsx,json}' --write",
|
|
31
|
+
"test:no-watch": "jest --config config/jest/jest.config.cjs --watchAll=false "
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@tehik-ee/tedi-design-system": "^11.0.0",
|
|
35
|
+
"keycloak-js": "23.0.2",
|
|
36
|
+
"react": "18.2.0",
|
|
37
|
+
"react-dom": "18.2.0",
|
|
38
|
+
"react-intl": "5.4.5",
|
|
39
|
+
"react-router-dom": "5.3.4",
|
|
40
|
+
"@types/react": "18.2.0",
|
|
41
|
+
"react-error-overlay": "6.0.9",
|
|
42
|
+
"timers-browserify": "^2.0.12",
|
|
43
|
+
"react-redux": "8.0.1",
|
|
44
|
+
"redux": "^4.1.2",
|
|
45
|
+
"ehr-components": "0.3.19",
|
|
46
|
+
"mkm-react-map": "^0.0.73",
|
|
47
|
+
"reactstrap": "^8.5.1",
|
|
48
|
+
"axios": "1.7.8",
|
|
49
|
+
"ehr-auth-react": "^1.0.0"
|
|
50
|
+
},
|
|
51
|
+
"resolutions": {
|
|
52
|
+
"@tehik-ee/tedi-design-system": "^11.0.0",
|
|
53
|
+
"keycloak-js": "23.0.2",
|
|
54
|
+
"react": "18.2.0",
|
|
55
|
+
"react-dom": "18.2.0",
|
|
56
|
+
"react-intl": "5.4.5",
|
|
57
|
+
"react-router-dom": "5.3.4",
|
|
58
|
+
"@types/react": "18.2.0",
|
|
59
|
+
"react-error-overlay": "6.0.9",
|
|
60
|
+
"react-redux": "8.0.1",
|
|
61
|
+
"redux": "^4.1.2",
|
|
62
|
+
"ehr-components": "0.3.19",
|
|
63
|
+
"mkm-react-map": "^0.0.73",
|
|
64
|
+
"reactstrap": "^8.5.1"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@tehik-ee/tedi-design-system": "^11.0.0",
|
|
68
|
+
"keycloak-js": "23.0.2",
|
|
69
|
+
"react": "18.2.0",
|
|
70
|
+
"react-dom": "18.2.0",
|
|
71
|
+
"react-intl": "5.4.5",
|
|
72
|
+
"react-router-dom": "5.3.4",
|
|
73
|
+
"@types/react": "18.2.0",
|
|
74
|
+
"@types/react-dom": "18.2.0",
|
|
75
|
+
"@types/react-redux": "7.1.25",
|
|
76
|
+
"@types/react-router-dom": "5.3.3",
|
|
77
|
+
"@types/babel__traverse": "7.20.6",
|
|
78
|
+
"react-error-overlay": "6.0.9",
|
|
79
|
+
"redux": "^4.1.2",
|
|
80
|
+
"ehr-components": "0.3.19",
|
|
81
|
+
"mkm-react-map": "^0.0.73",
|
|
82
|
+
"reactstrap": "^8.5.1",
|
|
83
|
+
"@eslint/eslintrc": "^3.2.0",
|
|
84
|
+
"@eslint/js": "^9.15.0",
|
|
85
|
+
"@babel/cli": "^7.26.4",
|
|
86
|
+
"@babel/core": "^7.26.9",
|
|
87
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
88
|
+
"@babel/traverse": "^7.26.9",
|
|
89
|
+
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
|
|
90
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
91
|
+
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
|
|
92
|
+
"@babel/plugin-transform-reserved-words": "^7.22.5",
|
|
93
|
+
"@babel/preset-react": "^7.22.15",
|
|
94
|
+
"@babel/preset-typescript": "^7.23.2",
|
|
95
|
+
"@types/node": "^18.19.3",
|
|
96
|
+
"@types/redux-mock-store": "^1.5.0",
|
|
97
|
+
"eslint": "^9.15.0",
|
|
98
|
+
"buffer": "^6.0.3",
|
|
99
|
+
"timers-browserify": "^2.0.12",
|
|
100
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
101
|
+
"eslint-config-prettier": "^9.1.0",
|
|
102
|
+
"eslint-config-react-app": "^7.0.1",
|
|
103
|
+
"eslint-import-resolver-typescript": "^3.8.3",
|
|
104
|
+
"eslint-plugin-diff": "^2.0.3",
|
|
105
|
+
"eslint-plugin-import": "^2.31.0",
|
|
106
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
107
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
108
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
109
|
+
"eslint-plugin-react": "^7.37.2",
|
|
110
|
+
"eslint-webpack-plugin": "^4.2.0",
|
|
111
|
+
"globals": "^15.12.0",
|
|
112
|
+
"husky": "^8.0.3",
|
|
113
|
+
"cross-env": "^7.0.3",
|
|
114
|
+
"babel-jest": "^29.7.0",
|
|
115
|
+
"babel-loader": "^10.0.0",
|
|
116
|
+
"babel-plugin-named-asset-import": "^0.3.8",
|
|
117
|
+
"babel-preset-react-app": "^10.1.0",
|
|
118
|
+
"lint-staged": "^13.2.3",
|
|
119
|
+
"postcss": "^8.4.4",
|
|
120
|
+
"prettier": "^3.0.0",
|
|
121
|
+
"sass": "1.32.4",
|
|
122
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
123
|
+
"@testing-library/user-event": "^14.5.1",
|
|
124
|
+
"@testing-library/dom": "^10.4.0",
|
|
125
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
126
|
+
"@testing-library/react": "^16.0.1",
|
|
127
|
+
"@types/jest": "^29.5.14",
|
|
128
|
+
"axios": "1.7.8",
|
|
129
|
+
"ehr-auth-react": "^1.0.0",
|
|
130
|
+
|
|
131
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
132
|
+
"@reduxjs/toolkit": "^1.4.0",
|
|
133
|
+
"@svgr/webpack": "^5.5.0",
|
|
134
|
+
"base64-js": "^1.5.1",
|
|
135
|
+
"bfj": "^7.0.2",
|
|
136
|
+
"browserslist": "^4.18.1",
|
|
137
|
+
"camelcase": "^6.2.1",
|
|
138
|
+
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
139
|
+
"css-loader": "^6.5.1",
|
|
140
|
+
"css-minimizer-webpack-plugin": "^3.2.0",
|
|
141
|
+
"dotenv": "^10.0.0",
|
|
142
|
+
"dotenv-expand": "^5.1.0",
|
|
143
|
+
"file-loader": "^6.2.0",
|
|
144
|
+
"fs-extra": "^10.0.0",
|
|
145
|
+
"html-webpack-plugin": "^5.5.0",
|
|
146
|
+
"http-proxy-middleware": "^2.0.1",
|
|
147
|
+
"hwcrypto-js": "0.0.13",
|
|
148
|
+
"identity-obj-proxy": "^3.0.0",
|
|
149
|
+
"jest": "^29.7.0",
|
|
150
|
+
"jest-mock-axios": "^4.8.0",
|
|
151
|
+
"jest-resolve": "^29.7.0",
|
|
152
|
+
"jest-watch-typeahead": "^2.2.2",
|
|
153
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
154
|
+
"mini-css-extract-plugin": "^2.4.5",
|
|
155
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
156
|
+
"postcss-loader": "^6.2.1",
|
|
157
|
+
"postcss-normalize": "^10.0.1",
|
|
158
|
+
"postcss-preset-env": "^7.0.1",
|
|
159
|
+
"prompts": "^2.4.2",
|
|
160
|
+
"react-app-polyfill": "^3.0.0",
|
|
161
|
+
"react-dev-utils": "^12.0.1",
|
|
162
|
+
"react-refresh": "^0.11.0",
|
|
163
|
+
"redux-logger": "^3.0.6",
|
|
164
|
+
"redux-thunk": "^2.3.0",
|
|
165
|
+
"react-redux": "^8.0.1",
|
|
166
|
+
"resolve": "^1.20.0",
|
|
167
|
+
"resolve-url-loader": "^4.0.0",
|
|
168
|
+
"sass-loader": "^12.3.0",
|
|
169
|
+
"semver": "^7.3.5",
|
|
170
|
+
"source-map-loader": "^3.0.0",
|
|
171
|
+
"style-loader": "^3.3.1",
|
|
172
|
+
"tailwindcss": "^3.0.2",
|
|
173
|
+
"terser-webpack-plugin": "^5.2.5",
|
|
174
|
+
"typescript": "5.0.4",
|
|
175
|
+
"typescript-eslint": "^8.16.0",
|
|
176
|
+
"ts-jest": "^29.2.5",
|
|
177
|
+
"webpack": "^5.64.4",
|
|
178
|
+
"webpack-dev-server": "^4.6.0",
|
|
179
|
+
"webpack-manifest-plugin": "^4.0.2",
|
|
180
|
+
"workbox-webpack-plugin": "^6.4.1",
|
|
181
|
+
"circular-dependency-plugin": "^5.2.2",
|
|
182
|
+
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
183
|
+
"querystring-es3": "^0.2.1",
|
|
184
|
+
"webpack-cli": "^5.1.4",
|
|
185
|
+
"webpack-bundle-analyzer": "^4.10.2",
|
|
186
|
+
"merge-jsons-webpack-plugin": "^2.0.1",
|
|
187
|
+
"redux-mock-store": "^1.5.4",
|
|
188
|
+
"xlsx": "^0.16.8"
|
|
189
|
+
},
|
|
190
|
+
"husky": {
|
|
191
|
+
"hooks": {
|
|
192
|
+
"pre-commit": "lint-staged"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"lint-staged": {
|
|
196
|
+
"**/*.{js,ts,tsx,json}": [
|
|
197
|
+
"prettier --write"
|
|
198
|
+
],
|
|
199
|
+
"**/*.{js,ts,tsx}": [
|
|
200
|
+
"eslint"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"browserslist": {
|
|
204
|
+
"production": [
|
|
205
|
+
">0.2%",
|
|
206
|
+
"not dead",
|
|
207
|
+
"not op_mini all"
|
|
208
|
+
],
|
|
209
|
+
"development": [
|
|
210
|
+
"last 1 chrome version",
|
|
211
|
+
"last 1 firefox version",
|
|
212
|
+
"last 1 safari version"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
"babel": {
|
|
216
|
+
"presets": [
|
|
217
|
+
"react-app"
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
}
|