-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
93 lines (93 loc) · 2.72 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
{
"name": "pipeline-graph-view-plugin",
"version": "1.0.0",
"description": "Pipeline Graph visualization for Jenkins pipelines",
"private": true,
"scripts": {
"mvnbuild": "npm run build",
"mvntest": "npm test",
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "jest --ci --reporters=default --reporters=jest-junit && prettier --check src/main/frontend/",
"jest": "jest",
"prettier": "prettier --write src/main/frontend/"
},
"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": {
"@babel/helpers": "^7.20.7",
"@babel/preset-typescript": "^7.21.0",
"@babel/traverse": "^7.20.7",
"@mui/icons-material": "5.10.9",
"@mui/lab": "5.0.0-alpha.104",
"@mui/material": "5.10.10",
"@react-spring/web": "9.7.5",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-tippy": "^1.4.0",
"react-virtuoso": "^4.6.2"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "^7.21.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@types/enzyme": "3.10.18",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.6",
"css-loader": "7.1.2",
"import": "^0.0.6",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "3.3.3",
"react-collapse-pane": "^3.0.1",
"sass": "1.80.6",
"sass-loader": "14.2.1",
"source-map-loader": "5.0.0",
"style-loader": "^4.0.0",
"styled-components": "^6.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^8.0.0",
"typescript": "5.6",
"webpack": "5.96.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "5.1.4"
},
"jest": {
"rootDir": "src/main/frontend",
"setupFilesAfterEnv": [
"<rootDir>setupTests.js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
},
"jest-junit": {
"outputDirectory": "target/surefire-reports",
"outputName": "jest-junit.xml"
}
}