-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "payload-tracker-frontend",
"version": "0.2.0",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"postbuild": "node dr-surge.js",
"build": "ENV=production webpack --mode production --config webpack.config.js",
"start": "ENV=development webpack serve --mode development --config webpack.config.js",
"lint": "eslint --ext .js ./src/",
"analyze": "ANALYZE=true npm run build",
"clean": "rimraf dist"
},
"dependencies": {
"@patternfly/react-charts": "6.51.19",
"@patternfly/react-core": "4.198.19",
"@patternfly/react-icons": "4.49.19",
"@patternfly/react-styles": "4.48.19",
"@patternfly/react-table": "4.67.19",
"axios": "1.6.0",
"connected-react-router": "6.9.2",
"history": "4.7.2",
"humanize-duration": "3.28.0",
"luxon": "1.28.1",
"react": "17.0.2",
"react-csv": "1.1.1",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"sass": "1.49.10"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"babel-loader": "8.2.4",
"css-loader": "6.7.1",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"html-webpack-plugin": "5.5.0",
"prop-types": "15.8.1",
"rimraf": "3.0.2",
"sass-loader": "12.6.0",
"style-loader": "3.3.1",
"webpack": "^5.93.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}