-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
127 lines (127 loc) · 3.74 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "cypress-react-component-test-examples",
"version": "0.1.0",
"private": false,
"license": "UNLICENSED",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"@material-ui/pickers": "3.3.10",
"@reduxjs/toolkit": "1.9.5",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/faker": "6.6.8",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@xstate/react": "3.2.2",
"faker": "5.5.3",
"formik": "2.4.2",
"i18next": "23.2.11",
"mobx": "6.10.0",
"mobx-react-lite": "4.0.3",
"prop-types": "15.8.1",
"query-string": "8.1.0",
"radioactive-state": "1.4.0",
"react": "18.2.0",
"react-bootstrap": "2.8.0",
"react-dom": "18.2.0",
"react-google-maps": "9.4.5",
"react-i18next": "13.0.2",
"react-router-dom": "6.14.2",
"react-scripts": "4.0.3",
"sass": "^1.56.1",
"start-server-and-test": "2.0.0",
"styled-components": "6.0.4",
"typescript": "5.1.6",
"web-vitals": "3.4.0",
"xstate": "4.38.1",
"yup": "1.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint --ext=.js,.ts,.tsx",
"typecheck": "tsc --noEmit",
"cy:open": "cypress open --e2e --browser chrome",
"cy:run": "cypress run --e2e --browser chrome",
"cy:open-ct": "export NODE_OPTIONS=--openssl-legacy-provider && cypress open --component --browser chrome",
"cy:run-ct": "export NODE_OPTIONS=--openssl-legacy-provider && cypress run --component --browser chrome",
"cy:run-ct-fast": "yarn cy:run-ct --config video=false screenshot=false useExperimentalComponentTesting=true",
"server:test": "server-test 3000 cy:run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-expressions": "off",
"no-undef": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/cypress": "9.0.0",
"@types/faker": "6.6.8",
"@types/ramda": "0.29.3",
"@types/redux-actions": "2.6.2",
"@types/redux-thunk": "2.1.0",
"axios": "0.27.2",
"copy-to-clipboard": "3.3.3",
"cross-env": "7.0.3",
"cy-spok": "1.6.2",
"cypress": "13.17.0",
"cypress-axe": "1.4.0",
"cypress-each": "1.13.3",
"cypress-map": "^1.19.1",
"cypress-react-app-actions": "1.0.2",
"cypress-real-events": "1.9.1",
"cypress-recurse": "1.35.2",
"eslint-plugin-cypress": "2.13.3",
"eslint-plugin-prettier": "4.0.0",
"jotai": "^2.0.4",
"jotai-optics": "^0.3.0",
"js-cookie": "3.0.5",
"lodash": "4.17.21",
"optics-ts": "^2.4.0",
"prettier": "3.0.0",
"pretty": "2.0.0",
"ramda": "0.29.0",
"react-error-boundary": "3.1.4",
"react-infinite-scroll-hook": "4.1.1",
"react-redux": "8.1.1",
"react-transition-group": "4.4.5",
"react-use-geolocation": "0.1.1",
"react-use-keypress": "1.3.1",
"recoil": "0.7.7",
"redux": "4.2.1",
"redux-actions": "2.6.5",
"redux-devtools-extension": "2.13.9",
"rxjs": "^7.8.1",
"thunkify": "2.1.2",
"typescript-plugin-css-modules": "^5.0.1",
"use-interval": "1.4.0",
"uuid": "9.0.0",
"vanilla-tilt": "1.8.0",
"warning": "4.0.3"
}
}