-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.8 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
{
"name": "commerce-integration-starter-kit",
"version": "1.0.2",
"license": "Apache-2.0",
"description": "To reduce the cost of integrating with Enterprise Resource Planning (ERP) solutions and to improve the reliability of real-time connections, Adobe is introducing an integration starter kit for back-office integrations using Adobe Developer App Builder. The kit includes reference integrations for commonly used commerce data like orders, products, and customers. It also includes onboarding scripts and a standardized architecture for developers to build on following best practices.",
"keywords": [
"testing",
"aio",
"adobe-io"
],
"author": "Adobe Inc.",
"private": true,
"dependencies": {
"@adobe/aio-commerce-lib-auth": "^0.3.3",
"@adobe/aio-commerce-lib-core": "^0.4.1",
"@adobe/aio-lib-ims": "^8.0.0",
"@adobe/aio-lib-state": "^5.1.0",
"@adobe/aio-lib-telemetry": "^1.0.0",
"@adobe/aio-sdk": "^6.0.0",
"@adobe/commerce-sdk-auth": "^0.1.0",
"ajv": "^8.16.0",
"ansis": "^4.1.0",
"cloudevents": "^10.0.0",
"dotenv": "^16.4.5",
"got": "^11.8.5",
"graphql-request": "^7.1.2",
"node-fetch": "^2.7.0",
"openwhisk": "^3.21.8",
"uuid": "^10.0.0",
"valibot": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.5",
"nock": "^13.5.6",
"prettier": "^3.6.2",
"ultracite": "^5.2.3"
},
"scripts": {
"prepare": "husky",
"postinstall": "npm run build --if-present --workspaces",
"test": "jest --passWithNoTests -c ./test/jest.config.js ./test",
"onboard": "node --no-warnings -e 'require(\"./scripts/onboarding/index.js\").main()'",
"onboard:debug": "node --inspect-brk --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:report": "biome ci --formatter-enabled=true --linter-enabled=true --assist-enabled=true --no-errors-on-unmatched",
"code:format:fix": "biome format --write --no-errors-on-unmatched",
"code:lint:fix": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"docs:format:fix": "prettier --write --no-error-on-unmatched-pattern '**/*.md' \"!**/{CODE_OF_CONDUCT.md,COPYRIGHT,LICENSE,SECURITY.md,CONTRIBUTING.md,COPILOT-INSTRUCTIONS.md}\""
},
"engines": {
"node": ">=22.0.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"npm run code:lint:fix",
"npm run code:format:fix"
],
"*.md": [
"npm run docs:format:fix"
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}