generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 2.05 KB
/
package.json
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",
"private": true,
"version": "1.3.0",
"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",
"local": "aem up --port=6456",
"test": "wtr --config ./web-test-runner.config.mjs \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"test:watch": "npm test -- --watch",
"test:file": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage",
"test:file:watch": "wtr --config ./web-test-runner.config.mjs --node-resolve --port=2000 --coverage --watch",
"build:mdast": "esbuild --format=esm --minify ./nx/deps/mdast/src/index.js --bundle --outfile=./nx/deps/mdast/dist/index.js"
},
"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/core": "7.24.5",
"@babel/eslint-parser": "7.24.5",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "^0.2.0",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "0.9.0",
"chai": "4.4.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-ecmalist": "^1.0.8",
"eslint-plugin-import": "2.29.1",
"sinon": "13.0.2",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "25.0.0"
},
"dependencies": {
"@adobe/mdast-util-gridtables": "^4.0.6",
"@adobe/remark-gridtables": "^3.0.6",
"esbuild": "^0.23.1",
"hast-util-raw": "^9.0.4",
"hast-util-to-html": "^9.0.3",
"mdast-util-to-hast": "^13.2.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
}
}