forked from adobe-experience-league/exlm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "@adobe/helix-project-boilerplate",
"private": true,
"version": "1.2.2",
"description": "Starter project for Adobe Helix",
"type": "module",
"scripts": {
"lint:js": "eslint .",
"lint:sass": "stylelint blocks/**/*.scss styles/*.scss",
"lint:sass:fix": "stylelint blocks/**/*.scss styles/*.scss --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run lint:js && npm run lint:sass",
"semantic-release": "semantic-release --debug",
"sass:watch": "node sass-compile.js --watch",
"sass:compile": "node sass-compile.js --compile",
"up": "npm run sass:watch & aem up",
"prepare": "husky install",
"preview": "node preview.js",
"quality": "npm run format:check && npm run lint"
},
"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",
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.19.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",
"chai": "4.3.7",
"eslint": "8.35.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"semantic-release": "21.0.5",
"sinon": "15.0.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "30.0.1",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.2.1"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.scss": [
"stylelint --fix",
"prettier --write"
],
"*.{ejs,html,md,mdx,toml,yaml,xml}": [
"prettier --write"
]
},
"dependencies": {
"open": "^9.1.0"
}
}