generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 3.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@adobe/helix-project-boilerplate",
"private": true,
"version": "1.2.2",
"description": "Starter project for Adobe Helix",
"scripts": {
"lint:js": "eslint .",
"lint:css": "stylelint templates/**/*-dev.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"build": "npm-run-all build:css build:franklin:js build:script:js",
"build:franklin:js": "terser ./scripts/lib-franklin-dev.js --output ./scripts/lib-franklin.js",
"build:script:js": "terser ./scripts/scripts-dev.js --output ./scripts/scripts.js",
"build:css": "node ./build-css.js",
"dev": "concurrently --kill-others \"node ./build-css.js --watch\" \"aem up --print-index\"",
"semantic-release": "semantic-release --debug",
"prepare": "husky install",
"converter:build": "cd tools/actions/convert && rimraf dist/ && webpack",
"converter:build:prod": "cd tools/actions/convert && rimraf dist/ && webpack --mode=production",
"converter:test": "cd tools/actions/convert && instant-mocha --spec test/**/*.test.js --require test/setup-env.esm.mjs --timeout 10000 --reporter-option maxDiffSize=0",
"converter:test:passthrough": "cd tools/actions/convert && instant-mocha --spec test/**/pass-through-converter.test.js --require test/setup-env.esm.mjs --timeout 10000 --reporter-option maxDiffSize=0",
"converter:serve": "npm-run-all converter:build --parallel converter:serve:*",
"converter:serve:build": "cd tools/actions/convert && webpack ./src/dev-server.js --watch",
"converter:serve:server": "nodemon -r dotenv/config --inspect tools/actions/convert/dist/index.js --watch tools/actions/convert/dist",
"converter:deploy": "node node_modules/crosswalk-converter/bin/deploy.mjs tools/actions/convert/dist/index.js.zip",
"converter:undeploy": "node node_modules/crosswalk-converter/bin/undeploy.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/helix-project-boilerplate.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobe/helix-project-boilerplate/issues"
},
"homepage": "https://github.com/adobe/helix-project-boilerplate#readme",
"dependencies": {
"@adobe/aem-cli": "^15.0.2",
"@adobe/helix-importer": "github:mhaack/helix-importer#html2jcr",
"crosswalk-converter": "github:buuhuu/crosswalk-converter",
"itty-router": "^2.6.6",
"jsdom": "^24.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.19.1",
"@cloudflare/workers-types": "^4.20230710.1",
"@esm-bundle/chai": "4.3.4-fix.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@web/test-runner": "0.15.1",
"@web/test-runner-commands": "0.6.5",
"autoprefixer": "^10.4.15",
"chai": "4.3.7",
"concurrently": "^8.2.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "8.35.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.0",
"nock": "^13.3.8",
"postcss": "^8.4.29",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"semantic-release": "21.0.5",
"sinon": "15.0.1",
"stylelint": "15.2.0",
"stylelint-config-standard": "30.0.1",
"tailwindcss": "^3.3.3",
"terser": "^5.31.0",
"typescript": "^5.1.6",
"vitest": "^0.31.0"
}
}