-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 2.01 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
{
"name": "@adobe/helix-project-boilerplate",
"private": true,
"version": "1.0.0",
"description": "Starter project for Adobe Helix",
"scripts": {
"test:unit": "jest --config",
"test:accept-baseline": "node ghosti/accept-baseline.js",
"test:snapshots": "node ghosti/index.js",
"lint:js": "eslint .",
"lint:css": "stylelint _src-lp/blocks/**/*.css styles/*.css",
"lint:css:fix": "stylelint _src-lp/blocks/**/*.css styles/*.css --fix",
"lint:scss": "stylelint _src-lp/blocks/**/*.scss styles/*.scss",
"lint:scss:fix": "stylelint _src-lp/blocks/**/*.scss styles/*.scss --fix",
"lint": "npm run lint:js && npm run lint:scss",
"purge-css": "purgecss --config purgecss.config.js --output _src-lp/styles/vendor/",
"compile-sass": "node sass-compile.mjs",
"compile-sass:watch": "node sass-compile.mjs --watch",
"up": "npm run compile-sass:watch & aem up",
"prepare": "husky"
},
"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",
"@babel/preset-env": "^7.22.9",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/test-runner": "0.15.1",
"@web/test-runner-commands": "0.6.5",
"babel-jest": "^29.6.1",
"bootstrap": "^5.3.0",
"chai": "4.3.7",
"dotenv": "^16.3.1",
"eslint": "8.35.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"ghost-inspector": "^7.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.1",
"jsdom": "^23.0.1",
"purgecss": "^5.0.0",
"sass": "^1.69.1",
"sinon": "15.0.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "30.0.1",
"stylelint-config-standard-scss": "^10.0.0"
}
}