forked from carlos-biosca/Star-Wars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"name": "sw-playwright-template",
"version": "0.0.1",
"private": true,
"dependencies": {
"@playwright/experimental-ct-react17": "^1.32.2",
"@vanilla-extract/vite-plugin": "^3.8.0",
"allure-commandline": "^2.23.1",
"allure-playwright": "^2.5.0",
"axios": "^0.24.0",
"crypto-js": "^4.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.1",
"update-browserslist-db": "^1.0.10",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "npx playwright test",
"test-ui": "npx playwright test --ui",
"test-ct": "playwright test -c playwright-ct.config.ts",
"report": "npx playwright show-report playwright-report",
"generate-allure": "allure generate ./allure-results -c ./allure-report",
"allure-report": "npm run generate-allure && allure open"
},
"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/experimental-ct-react": "^1.36.2",
"@playwright/test": "^1.36.2",
"@testing-library/react": "^11.2.7",
"@types/react": "^17.0.39",
"typescript": "^4.8.2"
}
}