-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 KB
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
{
"name": "roadchoice",
"private": true,
"version": "34.0.0",
"description": "",
"engines": {
"node": ">=24.14.1 <25",
"npm": ">=11.11.0"
},
"scripts": {
"start": "run-p dev watch",
"build": "webpack --config ./webpack.config.js",
"build:dev": "cross-env SOURCEMAPS=true webpack --config ./webpack.config.js",
"watch": "cross-env SOURCEMAPS=true webpack --watch --config ./webpack.config.js",
"dev": "aem up",
"dev:ca": "aem up --url https://main--roadchoice-ca--volvogroup.aem.page",
"dev:mx": "aem up --url https://main--roadchoice-mx--volvogroup.aem.page",
"lint:js": "eslint .",
"lint:css": "stylelint common/**/*.css blocks/**/*.css styles/*.css",
"lint:js:fix": "eslint . --fix",
"lint:css:fix": "stylelint common/**/*.css blocks/**/*.css styles/*.css --fix",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"format": "prettier --write \"**/*.{js,jsx}\"",
"prepare": "husky"
},
"lint-staged": {
"*.js": "npm run lint:js",
"*.css": "npm run lint:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aemsites/vg-roadchoice-com/"
},
"author": "Adobe",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/aemsites/vg-roadchoice-com/issues"
},
"homepage": "https://github.com/aemsites/vg-roadchoice-com/#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mini-css-extract-plugin": "^2.10.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"stylelint": "17.6.0",
"stylelint-config-standard": "40.0.0",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"dependencies": {
"@volvo/vcdk": "^10.14.0",
"@volvo/vcdk-assets": "2.4.0",
"@volvo/vcdk-tokens": "2.4.1"
}
}