-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
116 lines (116 loc) · 3.93 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
{
"name": "client",
"version": "2.0.3",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.8",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/react": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"@types/react-table": "^7.7.12",
"@testing-library/react": "^13.4.0",
"bootstrap": "5.2.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"history": "^5.3.0",
"http-status-codes": "^2.1.4",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-http-backend": "^1.4.1",
"moment": "^2.29.4",
"msw": "^0.47.2",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.35.0",
"react-i18next": "^11.18.6",
"react-modal-hook": "^3.0.2",
"react-phone-input-2": "^2.15.1",
"react-redux": "^8.0.2",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"react-select": "^5.4.0",
"react-table": "^7.8.0",
"react-toastify": "^9.0.8",
"react-transition-group": "^4.4.5",
"react-moment": "^1.1.2",
"sentry": "^0.1.2",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.3.5",
"web-vitals": "^3.0.1",
"yup": "^0.32.9"
},
"scripts": {
"start": "cross-env PORT=4200 react-scripts start",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "react-scripts build",
"predeploy:staging": "cross-env REACT_APP_CONFIGURATION=staging react-scripts build",
"predeploy:production": "cross-env REACT_APP_CONFIGURATION=production react-scripts build",
"deploy:staging": "aws s3 sync ./build s3://<< replace-with-s3-bucket-name >> --profile shift3 --delete",
"deploy:production": "aws s3 sync ./build s3://<< replace-with-s3-bucket-name >> --profile shift3 --delete",
"test": "react-scripts test",
"test-ci": "react-scripts test -w 1 --watchAll=false",
"test-cov": "react-scripts test --coverage .",
"test-cov-ci": "react-scripts test -w 1 --watchAll=false --coverage",
"eject": "react-scripts eject",
"prepare": "husky install",
"i18n": "i18next **/*.tsx"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-bootstrap": "^0.32.30",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.6.4",
"eslint-plugin-unused-imports": "^2.0.0",
"fishery": "^2.2.2",
"husky": "^8.0.1",
"i18next-parser": "^6.5.0",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.2.0",
"react-testing-library": "^8.0.1",
"typescript": "^4.8.3",
"typescript-plugin-styled-components": "^2.0.0"
},
"lint-staged": {
"*!(*spec).(ts|tsx)": "eslint --max-warnings 0 --fix"
}
}