-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.68 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.68 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
{
"name": "marketplace-brandfolder-app",
"version": "2.0.0",
"description": "Contentstack Marketplace Brandfolder App",
"scripts": {
"build": "cd ui && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"show-report": "npx playwright show-report",
"test:chrome": "npx playwright test --config=playwright.config.ts --project=Chromium",
"test:firefox": "npx playwright test --config=playwright.config.ts --project=firefox",
"test:safari": "npx playwright test --config=playwright.config.ts --project=safari",
"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:safari-headed": "npx playwright test --headed --config=playwright.config.ts --project=safari"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/marketplace-brandfolder-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/contentstack/marketplace-brandfolder-app/issues"
},
"homepage": "https://github.com/contentstack/marketplace-brandfolder-app#readme",
"devDependencies": {
"@playwright/test": "^1.49.1",
"axios": "^1.13.2",
"dotenv": "^16.4.7",
"husky": "^4.3.8",
"jsonfile": "^6.2.0",
"otplib": "^12.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "cd ui && rimraf build && npm run precommit"
}
},
"validate-branch-name": {
"pattern": "^(feature|bugfix|hotfix)/ESI-[0-9]+-[a-z0-9-]{5,30}$",
"errorMsg": "Please add valid branch name!"
}
}