forked from aem-showcase/frescopa-dba
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.22 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.22 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
{
"name": "@adobe/aem-boilerplate-commerce",
"private": true,
"version": "1.0.0",
"description": "Starter project for Adobe Commerce on Edge Delivery Services",
"scripts": {
"lint:js": "eslint . --ext .json,.js,.mjs",
"lint:css": "stylelint blocks/**/*.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"start": "aem up --print-index",
"install:dropins": "node build.mjs && node postinstall.js",
"postinstall": "npm run install:dropins",
"postupdate": "npm run install:dropins",
"build:json": "npm-run-all -p build:json:models build:json:definitions build:json:filters",
"build:json:models": "merge-json-cli -i \"models/_component-models.json\" -o \"component-models.json\"",
"build:json:definitions": "merge-json-cli -i \"models/_component-definition.json\" -o \"component-definition.json\"",
"build:json:filters": "merge-json-cli -i \"models/_component-filters.json\" -o \"component-filters.json\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hlxsites/aem-boilerplate-commerce.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/hlxsites/aem-boilerplate-commerce/issues"
},
"homepage": "https://github.com/hlxsites/aem-boilerplate-commerce#readme",
"devDependencies": {
"@adobe/aem-cli": "^16.5.8",
"@babel/eslint-parser": "7.25.9",
"@dropins/build-tools": "0.2.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-xwalk": "github:adobe-rnd/eslint-plugin-xwalk#v0.1.3",
"husky": "9.1.1",
"merge-json-cli": "1.0.4",
"npm-run-all": "4.1.5",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1"
},
"dependencies": {
"@adobe/magento-storefront-event-collector": "^1.8.0",
"@adobe/magento-storefront-events-sdk": "^1.8.0",
"@dropins/storefront-account": "~1.0.3",
"@dropins/storefront-auth": "~1.0.3",
"@dropins/storefront-cart": "~1.0.2",
"@dropins/storefront-checkout": "~1.0.0",
"@dropins/storefront-order": "~1.0.4",
"@dropins/storefront-pdp": "~1.0.0",
"@dropins/tools": "^0.40.0"
}
}