generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"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": "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"
},
"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",
"@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",
"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",
"typescript": "^5.3.3",
"vite": "5.0.12"
},
"dependencies": {
"@kluntje/js-utils": "0.7.2",
"lit": "3.1.1"
},
"engines": {
"node": ">=18",
"npm": ">10.2"
}
}