-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
{
"name": "marketplace-app-boilerplate",
"version": "1.2.5",
"private": true,
"files": [
"dist"
],
"dependencies": {
"@contentstack/app-sdk": "^2.0.0",
"@contentstack/venus-components": "^2.2.5",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.4",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"axios": "^1.6.5",
"form-data": "^4.0.0",
"html-react-parser": "^3.0.8",
"jsonfile": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.3",
"web-vitals": "^3.5.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --verbose",
"eject": "react-scripts eject",
"show-report": "npx playwright show-report",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"prettier": "prettier --check src/",
"test:chrome": "npx playwright test --config=playwright.config.ts --project=Chromium",
"test:firefox": "npx playwright test --config=playwright.config.ts --project=firefox",
"test:chrome-headed": "npx playwright test --headed --config=playwright.config.ts --project=Chromium",
"test:firefox-headed": "npx playwright test --headed --config=playwright.config.ts --project=firefox"
},
"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"
]
},
"devDependencies": {
"@cucumber/cucumber": "^8.4.0",
"@playwright/test": "^1.23.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@types/lodash": "^4.14.202",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"playwright": "^1.23.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.2"
}
}