forked from SalesforceCommerceCloud/pwa-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.81 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": "pwa-kit",
"version": "3.17.0-dev",
"scripts": {
"bump-version": "node ./scripts/bump-version/index.js",
"bump-version:retail-react-app": "node ./scripts/bump-version/index.js --package=@salesforce/retail-react-app",
"bump-version:commerce-sdk-react": "node ./scripts/bump-version/index.js --package=@salesforce/commerce-sdk-react",
"bump-version:mcp": "node ./scripts/bump-version/index.js --package=@salesforce/pwa-kit-mcp",
"publish-to-npm": "node ./scripts/publish-to-npm.js",
"format": "lerna run --stream format",
"preinstall": "node ./scripts/check-version.js && npm run check-eslint-deps",
"postinstall": "node ./scripts/bootstrap.js && node ./scripts/check-lockfiles.mjs && npm run check-dep-version",
"lerna": "lerna",
"lint": "lerna run --stream lint",
"lint:fix": "lerna run lint:fix",
"start": "npm start --prefix packages/template-retail-react-app",
"pretest": "npm run lint",
"test:e2e": "npx playwright test --project=chromium --project=mobile-chrome",
"test:e2e:a11y": "npx playwright test --project=a11y-mobile --project=a11y-desktop",
"test:e2e:a11y:update-snapshots": "npx playwright test --update-snapshots --project=a11y-mobile --project=a11y-desktop",
"test:e2e:ui": "npx playwright test --ui",
"test": "lerna run --stream --concurrency=1 test",
"test:max-file-size": "lerna run --stream test:max-file-size",
"check-dep-version": "syncpack list-mismatches --types prod,dev",
"check-eslint-deps": "node scripts/check-eslint-deps.js",
"test:e2e:extra_features": "npx playwright test --project=extra-features-desktop --project=extra-features-mobile"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"commander": "^9.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-use-effect-no-deps": "^1.1.2",
"jsdom": "^22.1.0",
"lerna": "^6.6.1",
"prettier": "^2.8.6",
"semver": "^7.5.2",
"shelljs": "^0.9.2",
"syncpack": "^10.1.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0 || ^24.0.0",
"npm": "^9.0.0 || ^10.0.0 || ^11.0.0"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.962.0",
"node-fetch": "^2.6.9"
}
}