forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.55 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
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
{
"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 && 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.1",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.6",
"html-react-parser": "3.0.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-virtuoso": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/enzyme": "3.10.12",
"@types/jest": "29.5.0",
"@types/node": "18.15.10",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.6",
"css-loader": "4.3.0",
"import": "^0.0.6",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "2.7.1",
"react-collapse-pane": "^3.0.1",
"sass": "1.56.2",
"sass-loader": "13.1.0",
"source-map-loader": "4.0.1",
"style-loader": "^3.0.0",
"styled-components": "^5.3.6",
"ts-jest": "29.0.5",
"ts-loader": "^8.0.0",
"typescript": "4.3",
"webpack": "5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "4.10.0"
},
"jest": {
"rootDir": "src/main/frontend",
"setupFilesAfterEnv": [
"<rootDir>setupTests.js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
}
}