-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "pipeline-graph-view-plugin",
"version": "1.0.0",
"description": "Pipeline Graph visualization for Jenkins pipelines",
"private": true,
"type": "module",
"scripts": {
"mvnbuild": "npm run build",
"mvntest": "eslint --format checkstyle --output-file target/eslint-warnings.xml; vitest run --reporter junit",
"build": "vite build --mode production",
"build:dev": "vite build --mode production --watch",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "tsc && eslint && npm run format:check",
"lint:fix": "eslint --fix && npm run format",
"test": "vitest run",
"test:dev": "vitest watch"
},
"repository": {
"type": "git",
"url": "git@github.com:jenkinsci/pipeline-graph-view-plugin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jenkinsci/pipeline-graph-view-plugin/issues"
},
"homepage": "https://github.com/jenkinsci/pipeline-graph-view-plugin/#readme",
"dependencies": {
"@messageformat/core": "^3.4.0",
"@tippyjs/react": "^4.2.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtuoso": "^4.12.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.2",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.1",
"eslint-formatter-checkstyle": "^8.40.0",
"jsdom": "^26.1.0",
"neostandard": "^0.12.1",
"prettier": "^3.5.3",
"sass-embedded": "^1.87.0",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^3.1.2"
},
"engines": {
"node": ">=22"
}
}