-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.3 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.3 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
89
90
91
92
93
94
{
"name": "altinity-dashboard",
"version": "0.1.7",
"repository": "https://github.com/altinity/altinity-dashboard.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"devel": "concurrently \"../adash -devmode -notoken\" \"npm run start:dev\"",
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js",
"start": "sirv dist --cors --single --host --port 8080",
"start:dev": "webpack serve --color --progress --config webpack.dev.js",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist",
"install-git-hooks": "cd .. && husky install ui/.husky"
},
"devDependencies": {
"@types/enzyme": "^3.10.19",
"@types/jest": "^30.0.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.34.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"dotenv-webpack": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"imagemin": "^9.0.1",
"jest": "^30.0.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.6",
"prettier": "^3.6.1",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react-axe": "^3.5.4",
"react-docgen-typescript-loader": "^2.2.0",
"react-router-dom": "^5.3.0",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.14",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "5.8.3",
"url-loader": "^4.1.1",
"webpack": "^5.99.9",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@patternfly/react-charts": "^8.2.2",
"@patternfly/react-code-editor": "^6.2.2",
"@patternfly/react-core": "^6.2.1",
"@patternfly/react-icons": "^6.2.2",
"@patternfly/react-styles": "^6.1.0",
"@patternfly/react-table": "^6.2.2",
"async": "^3.2.6",
"concurrently": "^9.2.0",
"jssha": "^3.3.1",
"minimist": "^1.2.8",
"node-forge": "^1.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-monaco-editor": "^0.41.2",
"react-page-visibility": "^7.0.0",
"react-router-last-location": "git://github.com/hinok/react-router-last-location#2d57c676abb49f3f5755c44fbe2c24b01a8bb68b",
"semver": "^7.7.2",
"sirv-cli": "^3.0.1",
"stream": "^0.0.3",
"swagger-ui-react": "^5.25.2"
}
}