-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.33 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@hs-web-team/eslint-config-node",
"version": "3.2.0",
"description": "HubSpot Marketing WebTeam shared configurations for ESLint, Prettier, Stylelint, and Cypress",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js",
"./browser": "./browser.js",
"./.prettierrc.json": "./.prettierrc.json",
"./.stylelintrc.json": "./.stylelintrc.json",
"./cypress.config": {
"types": "./cypress.config.d.ts",
"require": "./cypress.config.cjs"
}
},
"typesVersions": {
"*": {
"cypress.config": [
"./cypress.config.d.ts"
]
}
},
"scripts": {
"lint": "npx eslint -c ./index.js *.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=24"
},
"bin": {
"add-prettier": "bin/add-prettier-scripts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HubSpotWebTeam/wt-eslint-node.git"
},
"keywords": [
"eslint",
"prettier",
"stylelint",
"cypress",
"hubspot",
"config"
],
"author": "Alessio Michelini & David Mooney",
"license": "ISC",
"bugs": {
"url": "https://github.com/HubSpotWebTeam/wt-eslint-node/issues"
},
"homepage": "https://github.com/HubSpotWebTeam/wt-eslint-node#readme",
"dependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.3",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.2",
"eslint-formatter-checkstyle": "^9.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0",
"esbuild": "^0.27.2",
"js-yaml": "^4.1.1"
},
"peerDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^24.0.0",
"cypress": "^15.0.0",
"stylelint": "^17.1.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0"
},
"peerDependenciesMeta": {
"stylelint": {
"optional": true
},
"stylelint-config-standard": {
"optional": true
},
"stylelint-config-standard-scss": {
"optional": true
},
"cypress": {
"optional": true
}
}
}