-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.44 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
{
"name": "patternfly-seed",
"version": "0.0.2",
"description": "An open source build scaffolding utility for web apps.",
"repository": "https://github.com/patternfly/patternfly-react-seed.git",
"homepage": "https://patternfly-react-seed.surge.sh",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"start": "sirv dist --cors --single --host --port 8080",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"test": "jest",
"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",
"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",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/react": "^6.1.11",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.19",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/victory": "^33.1.4",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"dotenv-webpack": "^6.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"imagemin": "^7.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.2.1",
"prop-types": "^15.6.1",
"raw-loader": "^4.0.2",
"react-axe": "^3.5.4",
"react-docgen-typescript-loader": "^3.7.2",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@hot-loader/react-dom": "^17.0.1",
"@patternfly/react-core": "^4.84.4",
"@patternfly/react-icons": "^4.7.22",
"@patternfly/react-styles": "^4.7.22",
"@patternfly/react-table": "^4.23.2",
"graphql": "^15.5.0",
"graphql-playground-react": "^1.7.27",
"graphql-request": "^3.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "^3.11.0",
"react-redux": "^7.2.2",
"react-router-last-location": "^2.0.1",
"sirv-cli": "^1.0.10"
}
}