-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.76 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
{
"name": "byk-customer-service",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.20.27",
"@types/react": "^16.14.16",
"@types/react-dom": "^16.9.14",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.3.0",
"@types/styled-components": "^5.1.18",
"axios": "^0.22.0",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"framer-motion": "4.1.17",
"howler": "^2.2.4",
"i18next": "^21.2.4",
"i18next-browser-languagedetector": "^6.1.2",
"linkify-react": "^3.0.3",
"linkifyjs": "^3.0.4",
"luxon": "^2.2.0",
"primeflex": "^3.1.2",
"primeicons": "^5.0.0",
"primereact": "^7.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.12.0",
"react-redux": "^7.2.5",
"react-router": "5.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.2",
"sass": "^1.42.1",
"styled-components": "^5.3.3",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^7.2.1",
"@types/howler": "^2.2.11",
"@types/luxon": "^2.0.8",
"eslint": "8.15.0",
"eslint-config-react-app": "7.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"history": "^5.1.0",
"husky": "^7.0.0",
"msw": "^0.36.3",
"prettier": "2.4.1",
"typescript": "^4.4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false",
"test:watch": "react-scripts test",
"test:coverage": "cross-env CI=true npm run test -- --env=jsdom --coverage",
"lint": "eslint src --ext .js,.ts,.jsx,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier:check": "prettier --check \"{,src/**/,webpack/}*.{json,yml,html,js,ts,tsx,css,scss}\"",
"prettier:format": "prettier --write \"{,src/**/,webpack/}*.{json,yml,html,js,ts,tsx,css,scss}\"",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/store/index.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/index.tsx",
"<rootDir>/src/i18n.ts"
],
"coverageThreshold": {
"global": {
"functions": 70,
"lines": 70
}
},
"coverageReporters": [
"text",
"lcov"
]
}
}