-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 3.01 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
{
"name": "react-ts-starter",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"lint": "eslint \"src/**/*.ts{,x}\"",
"format": "prettier --write \"src/**/*.ts{,x}\"",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "react-scripts test --collectCoverage --watchAll=false",
"docker:build": "docker build -t $npm_package_name:$npm_package_version .",
"docker:run": "docker run -it -p 80:80 --rm $npm_package_name:$npm_package_version",
"docker:sh": "docker run -it $npm_package_name:$npm_package_version sh",
"eject": "react-scripts eject"
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.1",
"@reduxjs/toolkit": "^1.5.1",
"@types/lodash": "^4.14.167",
"@types/node": "^16.0.0",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.6",
"@types/react-router": "^5.1.13",
"@types/react-router-dom": "^5.1.3",
"core-js": "^3.11.0",
"i18next": "^21.5.3",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-http-backend": "^1.2.1",
"immer": "^9.0.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.13",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.5.2",
"web-vitals": "^2.1.2",
"workbox-background-sync": "^6.1.5",
"workbox-broadcast-update": "^6.1.5",
"workbox-cacheable-response": "^6.1.5",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-google-analytics": "^6.1.5",
"workbox-navigation-preload": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-range-requests": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-streams": "^6.1.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.5",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.0.5",
"react-test-renderer": "^17.0.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{j,t}s{,x}",
"!src/service-worker.ts",
"!src/serviceWorkerRegistration.ts",
"!src/reportWebVitals.ts",
"!src/**/*.d.ts",
"!src/**/typings/*.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}