forked from Shift3/boilerplate-client-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.66 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
{
"name": "client",
"version": "2.0.2",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@reduxjs/toolkit": "^1.8.1",
"@sentry/react": "^6.19.7",
"@types/react-i18next": "^8.1.0",
"@types/react-table": "^7.7.11",
"bootstrap": "5.1.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"history": "^5.3.0",
"http-status-codes": "^2.1.4",
"i18next": "^21.8.4",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.1",
"moment": "^2.29.4",
"msw": "^0.39.2",
"react": "^18.1.0",
"react-bootstrap": "^2.3.1",
"react-dom": "^18.1.0",
"react-hook-form": "7.30.0",
"react-i18next": "^11.16.9",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-select": "^5.3.1",
"react-table": "^7.7.0",
"react-toastify": "^8.0.3",
"sentry": "^0.1.2",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.3.5",
"web-vitals": "^2.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": "^6.2.0",
"@hookform/resolvers": "^2.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/history": "^5.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@types/react": "^18.0.8",
"@types/react-bootstrap": "^0.32.25",
"@types/react-dom": "^18.0.3",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.3.1",
"fishery": "^2.2.2",
"husky": "^7.0.0",
"i18next-parser": "^6.4.0",
"jest-styled-components": "^7.0.4",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.1.0",
"react-testing-library": "^8.0.1",
"typescript": "^4.6.4",
"typescript-plugin-styled-components": "^2.0.0"
}
}