-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.08 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.08 KB
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
{
"name": "nova-poshta",
"version": "0.1.0",
"homepage": "https://bambuuk.github.io/nova-poshta-tracking",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"aos": "^2.3.4",
"axios": "^1.4.0",
"formik": "^2.4.3",
"gh-pages": "^6.0.0",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.8",
"redux-persist": "^6.0.0",
"sass": "^1.65.1",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:cypress/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cypress": "^13.5.1",
"eslint-plugin-cypress": "^2.15.1",
"identity-obj-proxy": "^3.0.0",
"msw": "^2.0.3",
"postcss-nested": "^6.0.1",
"tailwindcss": "^3.3.3"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!(nanoid)/)"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"src/App.js",
"src/index.js",
"src/services",
"src/setupTest.js",
"src/mocks",
"src/hooks",
"src/tests/helpers"
],
"coverageThreshold": {
"global": {
"lines": 80
}
},
"coverageReporters": [
"clover",
"json",
"lcov",
"text"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}