-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.09 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ultra-report",
"description": "📊 Next JS based TestNG reporter",
"version": "0.1.4-beta.0",
"type": "module",
"license": "AGPL-3.0-or-later",
"main": "./dist/index.js",
"bin": {
"ultra-report": "./dist/index.js"
},
"author": {
"name": "Wasiq Bhamla",
"email": "[email protected]"
},
"contributors": [
{
"name": "Wasiq Bhamla",
"email": "[email protected]"
}
],
"homepage": "https://github.com/WasiqB/ultra-report",
"repository": {
"url": "https://github.com/WasiqB/ultra-report"
},
"bugs": {
"url": "https://github.com/WasiqB/ultra-report/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/WasiqB"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"clean:cli": "rm -rf dist out",
"build:cli": "pnpm clean:cli && pnpm tsc --project ./tsconfig-cli.json",
"format:fix": "prettier --write --ignore-path .gitignore .",
"lint": "eslint --report-unused-disable-directives",
"lint:ci": "pnpm lint --quiet",
"format": "prettier --check .",
"format-fix": "prettier --write .",
"beta": "pnpm release --preRelease=beta",
"release": "release-it --ci",
"release:major": "pnpm release major",
"release:minor": "pnpm release minor",
"release:patch": "pnpm release patch",
"release:premajor": "pnpm beta premajor",
"release:preminor": "pnpm beta preminor",
"release:prepatch": "pnpm beta prepatch",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"log-symbols": "^7.0.0",
"lucide-react": "^0.445.0",
"next": "14.2.13",
"open": "^10.1.0",
"ora": "^8.1.0",
"react": "^18",
"react-dom": "^18",
"recharts": "^2.12.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@stylistic/eslint-plugin-js": "^2.8.0",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/node": "^22.5.5",
"@types/react": "^18.3.8",
"@types/react-dom": "^18",
"@types/xml2js": "^0.4.14",
"daisyui": "^4.12.10",
"eslint": "^9.11.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lerna-changelog": "^2.2.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"release-it": "^17.6.0",
"tailwindcss": "^3.4.12",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^8.6.0"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"pnpm lint",
"pnpm format-fix",
"pnpm format"
],
"**/*.mjs": [
"pnpm lint",
"pnpm format-fix",
"pnpm format"
]
},
"packageManager": "[email protected]"
}