-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.69 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.69 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
{
"name": "commerce-partner-day-2025",
"version": "1.0.2",
"license": "Apache-2.0",
"keywords": [
"testing",
"aio",
"adobe-io"
],
"author": "Adobe Inc.",
"private": true,
"dependencies": {
"@adobe/aio-lib-ims": "^7.0.2",
"@adobe/aio-lib-state": "^5.1.0",
"@adobe/aio-sdk": "^6.0.0",
"@adobe/commerce-sdk-auth": "^0.1.0",
"@adobe/exc-app": "^1.4.1",
"@adobe/generator-add-action-generic": "^1.0.1",
"@adobe/generator-add-web-assets-exc-react": "^1.0.2",
"@adobe/generator-app-events-generic": "^2.0.1",
"@adobe/react-spectrum": "^3.35.1",
"ajv": "^8.16.0",
"core-js": "^3.37.1",
"dotenv": "^16.4.5",
"got": "^11.8.5",
"node-fetch": "^2.7.0",
"oauth-1.0a": "^2.2.6",
"openwhisk": "^3.21.8",
"regenerator-runtime": "^0.14.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-router-dom": "^6.23.1",
"ky": "^1.7.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@openwhisk/wskdebug": "^1.4.0",
"@tsconfig/node20": "^20.1.4",
"concurrently": "^9.1.0",
"follow-redirects": ">=1.15.6",
"jest": "^29.7.0",
"nock": "^13.5.6",
"rimraf": "^6.0.1",
"stdout-stderr": "^0.1.13",
"typescript": "^5.7.2"
},
"scripts": {
"test": "jest --passWithNoTests -c ./test/jest.config.js ./test",
"e2e": "jest --collectCoverage=false --testRegex ./e2e",
"onboard": "node --no-warnings -e 'require(\"./scripts/onboarding/index.js\").main()'",
"commerce-event-subscribe": "node --no-warnings -e 'require(\"./scripts/commerce-event-subscribe/index.js\").main()'",
"code-check": "npx eslint 'actions/**/*.js' 'scripts/**/*.js' 'test/**/*.js' 'utils/**/*.js'",
"build": "npm run build --workspaces",
"clean": "rimraf ./packages/*/dist-* ./packages/*/*.tsbuildinfo",
"setupTelemetry": "echo {aio-cli-telemetry: {optOut: false}} > ~/.config/aio",
"install:mesh": "aio plugins:install @adobe/aio-cli-plugin-api-mesh",
"install:commerce": "aio plugins:install https://github.com/adobe-commerce/aio-cli-plugin-commerce",
"gh:logout": "unset GITHUB_TOKEN",
"setup": "yarn setupTelemetry && yarn install:mesh && yarn install:commerce && yarn gh:logout",
"postinstall": "yarn setup"
},
"engines": {
"node": ">=20"
},
"aio-app-builder-templates": [
"@adobe/generator-app-events-generic",
"@adobe/generator-add-action-generic",
"@adobe/generator-add-events-generic",
"@adobe/generator-add-web-assets-exc-react"
],
"workspaces": {
"packages": [
"packages/*"
]
}
}