-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@ivangabriele/eslint-config",
"description": "My most commonly used ESLint configurations.",
"license": "MIT",
"version": "10.0.0",
"type": "module",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"prepare": "husky",
"test:lint": "eslint --config=./.eslintrc.dev.json .",
"test:unit": "yarn workspaces foreach --all run test:unit"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/eslint-parser": "7.23.10",
"@babel/preset-env": "7.23.9",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@ivangabriele/commitlint-config": "2.0.3",
"@ivangabriele/prettier-config": "5.0.1",
"@ivangabriele/semantic-release-config-monorepo": "4.1.5",
"@ivangabriele/tsconfig-node": "1.2.2",
"@types/eslint": "^8",
"@types/jest": "29.5.12",
"eslint": "8.56.0",
"esm-path": "1.0.1",
"husky": "9.0.11",
"jest": "29.7.0",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"typescript": "5.3.3"
},
"resolutions": {
"json-schema": ">=0.4.0",
"minimist": ">=1.2.6",
"semver": ">=6.3.1"
},
"packageManager": "[email protected]",
"prettier": "@ivangabriele/prettier-config",
"release": {
"extends": "@ivangabriele/semantic-release-config-monorepo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivangabriele/eslint-config.git"
}
}