-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "marketplace-app-boilerplate",
"version": "2.0.2",
"private": true,
"type": "module",
"files": [
"dist"
],
"dependencies": {
"@contentstack/app-sdk": "^2.2.0",
"@contentstack/management": "^1.25.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.4",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"axios": "^1.12.2",
"contentstack": "^3.26.2",
"form-data": "^4.0.4",
"html-react-parser": "^3.0.8",
"jsonfile": "^6.1.0",
"jsrsasign": "^11.1.0",
"lucide-react": "^0.546.0",
"node-forge": "^1.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"typescript": "^4.9.3",
"web-vitals": "^3.5.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"build:check": "tsc -b && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview --host",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"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",
"test:report": "npx playwright test && npx playwright show-report",
"test:report-ci": "npx playwright test --reporter=html,json,junit",
"report:show": "npx playwright show-report",
"report:generate": "./scripts/generate-report.sh"
},
"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": "^11.3.0",
"@playwright/test": "^1.23.1",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/jsrsasign": "^10.5.15",
"@types/lodash": "^4.14.202",
"@types/node-forge": "^1.3.11",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"dotenv": "^16.4.7",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"playwright": "^1.23.1",
"postcss": "^8.5.6",
"prettier": "^2.7.1",
"tailwindcss": "^4.1.14",
"ts-node": "^10.9.2",
"vite": "^6.2.3"
}
}