forked from cryostatio/cryostat-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.8 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
{
"name": "cryostat-web",
"version": "0.0.1",
"description": "Web-Client for Cryostat",
"main": "server.js",
"repository": "https://github.com/cryostatio/cryostat-web.git",
"license": "UPL",
"private": true,
"scripts": {
"build": "npm-run-all -l build:notests test",
"build:notests": "webpack --config webpack.prod.js",
"clean": "rimraf dist",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"test": "jest --maxWorkers=50% --coverage=true",
"test:ci": "jest --maxWorkers=50%",
"eslint": "npm-run-all eslint:check",
"eslint:check": "eslint --ext .ts,.tsx,.js ./src/",
"eslint:apply": "eslint --ext .ts,.tsx,.js --fix ./src/",
"license:check": "license-check-and-add check -f license-config.json",
"license:apply": "license-check-and-add add -f license-config.json",
"lint": "npm-run-all -l -p format eslint",
"format": "npm-run-all format:check",
"format:check": "npm-run-all -l license:check prettier:check",
"format:apply": "npm-run-all -l -p license:apply prettier:apply",
"prettier:check": "prettier --check './src/**/*.{tsx,ts}'",
"prettier:apply": "prettier --write './src/**/*.{tsx,ts}'",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"build:bundle-analyze": "webpack-bundle-analyzer ./stats.json",
"build:bundle-profile-analyze": "npm-run-all -l build:bundle-profile build:bundle-analyze",
"yarn:install": "yarn install",
"yarn:frzinstall": "yarn install --frozen-lockfile"
},
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.2",
"@types/js-base64": "3.0.0",
"@types/react-test-renderer": "^17.0.1",
"@types/victory": "^33.1.5",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^7.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"imagemin": "^8.0.1",
"jest": "^27.2.4",
"js-base64": "3.7.2",
"license-check-and-add": "^4.0.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.3.0",
"nanoid": "^3.1.31",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-axe": "^3.4.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-router-dom": "^5.3.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0",
"yarn": "^1.22.13"
},
"dependencies": {
"@patternfly/react-core": "^4.224.1",
"@patternfly/react-icons": "^4.75.1",
"@patternfly/react-styles": "^4.74.1",
"@patternfly/react-table": "^4.93.1",
"@reduxjs/toolkit": "^1.8.5",
"@types/lodash": "^4.14.175",
"express": "^4.17.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"react-router-last-location": "^2.0.1"
}
}