-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.47 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
{
"name": "react-shopping-cart",
"version": "1.0.1",
"private": true,
"engines": {
"node": ">=12.0.0",
"npm": "You must use Yarn on this project",
"yarn": "^1.22.x"
},
"scripts": {
"start": "react-app-rewired start",
"cy:verify": "cypress verify",
"cy:run": "yarn run cypress run",
"cy:open": "yarn run cypress open",
"test": "start-server-and-test start http://localhost:3000 cy:run",
"prebuild": "yarn test",
"build": "react-app-rewired build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.1",
"react": "^17.0.2",
"react-confirm-alert": "^2.7.0",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-icons": "^4.2.0",
"react-outside-click-handler": "^1.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^7.0.4",
"react-tooltip": "^4.2.21",
"styled-components": "^5.3.0",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@cypress/react": "^5.9.1",
"@cypress/webpack-dev-server": "^1.4.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-router-dom": "^5.1.8",
"@types/react-toastify": "^4.1.0",
"@types/react-tooltip": "^4.2.4",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cypress": "^7.7.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"git-commit-msg-linter": "^3.2.6",
"prettier": "^2.3.2",
"react-app-rewire-alias": "^1.0.3",
"react-app-rewired": "^2.1.8",
"start-server-and-test": "^1.12.6",
"typescript": "^4.1.2"
}
}