-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "@telefonica/confluence-tools",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Confluence tools for markdown and confluence integration",
"packageManager": "pnpm@9.4.0",
"scripts": {
"nx": "nx",
"eslint": "eslint",
"lint": "eslint *.* --no-warn-ignored",
"lint:staged": "lint-staged",
"prepare": "husky install",
"check:all": "pnpm nx run-many -t check:all --all",
"check:spell": "cspell *.* .husky/*.* .github/*.*"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@eslint/js": "9.13.0",
"@eslint/json": "0.6.0",
"@eslint/markdown": "6.2.1",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"babel-plugin-module-resolver": "5.0.2",
"cross-env": "7.0.3",
"cspell": "8.15.5",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.1.3",
"globals": "15.12.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"lint-staged": "15.2.10",
"nx": "20.1.0",
"typescript": "5.6.3"
},
"lint-staged": {
"*.js": "eslint",
"*.mjs": "eslint",
"*.cjs": "eslint",
"*.json": "eslint",
"*.md": "eslint",
"*.*": "cspell --no-must-find-files"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}