-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"dependencies": {
"react": "^18.2.0",
"react-debounce-input": "^3.3.0",
"react-dom": "^18.2.0",
"react-rating-stars-component": "^2.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"serve": "^14.0.1",
"styled-components": "^5.3.5",
"typescript": "^4.7.4"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.3",
"@types/chai": "^4.3.3",
"@types/history": "^4.7.11",
"@types/jest": "^28.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.4",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"cypress": "^10.4.0",
"eslint": "8.34.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.30.1",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-production": "serve -s build",
"cypress": "cypress open",
"cypress:headless": "cypress run --browser chrome --headless",
"test:e2e": "start-server-and-test start 3000 cypress",
"test:e2e:ci": "start-server-and-test start 3000 cypress:headless"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}