This repository has been archived by the owner on May 21, 2024. It is now read-only.
forked from ifahrentholz/eds-editorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "@eds/website",
"private": true,
"version": "0.0.1",
"description": "EDS Editorial Website",
"scripts": {
"aemUp": "aem up",
"build": "tsc && vite build",
"build:watch": "run-p tsc:watch vite:watch",
"lint:js": "eslint 'src/**/!(*-toc).{js,json,ts}'",
"lint:js:fix": "eslint --fix 'src/**/!(*-toc).{js,json,ts}'",
"lint:css": "stylelint src/**/*.scss",
"lint:css:fix": "stylelint --fix src/**/*.scss",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js",
"start": "npm-run-all --parallel build:watch aemUp",
"tsc:watch": "tsc -w",
"vite": "vite",
"vite:watch": "vite build -w",
"prepare": "husky",
"husky:pre-commit": "npm-run-all --parallel lint:js lint:css",
"test": "jest",
"test:ci": "jest --ci",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"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.23.7",
"@babel/eslint-parser": "7.23.3",
"@types/node": "^20.11.21",
"@happy-dom/jest-environment": "^13.6.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"chai": "5.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"npm-run-all": "4.1.5",
"prettier": "3.2.4",
"rollup-plugin-minify-html-literals": "1.2.6",
"sass": "1.70.0",
"stylelint": "16.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.1.0",
"ts-node": "^10.9.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "5.0.12"
},
"dependencies": {
"@kluntje/js-utils": "0.7.2",
"@kluntje/services": "^0.6.6",
"lit": "3.1.1"
},
"engines": {
"node": ">=18",
"npm": ">10.2"
}
}