-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
103 lines (103 loc) · 3.23 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
{
"name": "client",
"version": "2.0.4",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.10",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/react": "^7.12.1",
"@sentry/tracing": "^7.12.1",
"@types/react-table": "^7.7.14",
"bootstrap": "5.2.3",
"date-fns": "^2.29.3",
"history": "^5.3.0",
"http-status-codes": "^2.1.4",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-http-backend": "^1.4.1",
"latest": "^0.2.0",
"react": "^18.2.0",
"react-bootstrap": "^2.6.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.35.0",
"react-i18next": "^12.1.5",
"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-select": "^5.7.0",
"react-table": "^7.8.0",
"react-toastify": "^9.0.8",
"react-transition-group": "^4.4.5",
"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": "vite",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "tsc && vite build",
"predeploy:staging": "tsc && vite build --mode staging",
"predeploy:production": "tsc && vite build",
"deploy:staging": "aws s3 sync ./dist s3://<< replace-with-s3-bucket-name >> --profile shift3 --delete",
"deploy:production": "aws s3 sync ./dist s3://<< replace-with-s3-bucket-name >> --profile shift3 --delete",
"test": "echo",
"test-ci": "echo",
"test-cov": "echo",
"test-cov-ci": "echo",
"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": {
"@types/node": "^20.1.0",
"@types/react": "^18.0.20",
"@types/react-bootstrap": "^0.32.30",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^3.1.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-jsx-a11y": "^6.6.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"i18next-parser": "^6.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.3",
"typescript-plugin-styled-components": "^2.0.0",
"vite": "^4.1.1",
"vite-plugin-node-polyfills": "^0.7.0",
"vite-tsconfig-paths": "^4.0.5"
},
"lint-staged": {
"*!(*spec).(ts|tsx)": "eslint --max-warnings 0 --fix"
}
}