-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.12 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
{
"name": "@adobe/aem-boilerplate",
"private": true,
"version": "1.3.0",
"type": "module",
"description": "Starter project for Adobe Helix",
"scripts": {
"lint:js": "eslint .",
"lint:css": "stylelint 'blocks/**/*.css' 'styles/*.css'",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"build:json": "npm-run-all -p build:json:models build:json:definitions build:json:filters",
"build:json:models": "merge-json-cli -i \"ue/models/component-models.json\" -o \"component-models.json\"",
"build:json:definitions": "merge-json-cli -i \"ue/models/component-definition.json\" -o \"component-definition.json\"",
"build:json:filters": "merge-json-cli -i \"ue/models/component-filters.json\" -o \"component-filters.json\"",
"perftest": "node scripts/perf.js",
"perftest:size": "node scripts/size.js",
"prepare": "husky"
},
"bundlesize": [
{
"path": "./scripts/*.js",
"maxSize": "50 KB",
"compression": "gzip"
},
{
"path": "./blocks/**/*.js",
"maxSize": "15 KB",
"compression": "gzip"
},
{
"path": "./styles/*.css",
"maxSize": "10 KB",
"compression": "gzip"
},
{
"path": "./blocks/**/*.css",
"maxSize": "5 KB",
"compression": "gzip"
},
{
"path": "./fonts/*.woff2",
"maxSize": "100 KB",
"compression": "gzip"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aem-boilerplate.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobe/aem-boilerplate/issues"
},
"homepage": "https://github.com/adobe/aem-boilerplate#readme",
"devDependencies": {
"@babel/eslint-parser": "7.28.5",
"@lhci/cli": "^0.14.0",
"bundlesize": "^0.18.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"husky": "^9.1.7",
"merge-json-cli": "^1.0.4",
"npm-run-all": "^4.1.5",
"playwright": "^1.56.1",
"stylelint": "16.25.0",
"stylelint-config-standard": "39.0.1"
}
}