-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.21 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
{
"name": "57wng",
"version": "0.1.31",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/57Admin/componentLibrary.git"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"check-prop-types": "^1.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.1.2",
"react-scripts": "4.0.3",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"web-vitals": "^1.0.1"
},
"scripts": {
"build": "react-scripts build",
"test:unit": "react-scripts test --watchAll --coverage",
"eject": "react-scripts eject",
"lint": "node_modules/.bin/eslint --ext /src",
"publish:npm": "rm -rf dist && mkdir dist && babel src/Components -d dist --copy-files",
"install_force_resolution": "npx npm-force-resolutions && npm install",
"start": "react-scripts start",
"test:e2e": "npx cypress run --config-file cypress/config/development.json",
"test:e2e-ci": "npx cypress run --browser chrome --config-file cypress/config/pipeline.json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js"
],
"resetMocks": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"css-select": "^4.1.3",
"css-what": "^5.0.1"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"enzyme": "^3.11.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"@babel/cli": "^7.11.5",
"@babel/preset-react": "^7.10.4"
}
}