-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "example-bi-directional-consumer-playwright-js",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.29.0",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "18.3.1",
"react-router": "^6.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"spectre.css": "^0.5.9",
"swagger-mock-validator": "^11.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"pretest": "rimraf pacts",
"eject": "react-scripts eject",
"test:cra": "react-scripts test",
"test": "playwright test",
"start:ui:and:test": "start-server-and-test start http://localhost:3000 test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "1.50.1",
"@testing-library/jest-dom": "6.6.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@babel/eslint-parser": "7.26.8",
"cross-env": "7.0.3",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "0.22.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"lodash": "4.17.21",
"start-server-and-test": "1.15.4"
}
}