-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.4 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@mantine/core": "^6.0.4",
"@mantine/dates": "^6.0.4",
"@mantine/form": "^6.0.4",
"@mantine/hooks": "^6.0.4",
"@mantine/modals": "^6.0.4",
"@mantine/prism": "^6.0.4",
"@tabler/icons": "^1.83.1",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-query-devtools": "^4.35.3",
"@types/jest": "^28.1.7",
"@types/node": "^18.11.18",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"axios": "^1.6.0",
"dayjs": "^1.11.2",
"jsdom": "^21.1.0",
"jwt-decode": "^3.1.2",
"mermaid": "10.6.1",
"msw": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-number-format": "^4.9.2",
"react-router-dom": "^6.3.0",
"remeda": "^1.0.1",
"typescript": "^4.4.2",
"usa-states": "^0.0.6",
"web-vitals": "^2.1.0",
"yup": "^0.32.11"
},
"scripts": {
"start": " cross-env REACT_APP_API_URL='' vite --port 3000",
"build": "node_modules/typescript/bin/tsc && vite build",
"serve": "vite preview",
"test": "vitest watch",
"test:no-watch": "vitest run",
"test:coverage": "vitest run --coverage",
"generate-api-models": "rm -rf ./src/generated-api-models && yarn openapi --exportSchemas true --exportServices false --exportCore false --input ./online-payments-specification.yaml --output ./src/generated-api-models",
"postinstall": "yarn run generate-api-models"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^3.0.1",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"openapi-typescript-codegen": "^0.25.0",
"resize-observer-polyfill": "^1.5.1",
"string.prototype.replaceall": "^1.0.6",
"vite": "^4.5.3",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.2"
},
"msw": {
"workerDirectory": "public"
},
"resolutions": {
"@adobe/css-tools": "^4.3.2",
"graphql": "16.6.0"
}
}