-
Notifications
You must be signed in to change notification settings - Fork 285
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.91 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
{
"name": "patternfly-seed",
"version": "0.0.1",
"description": "An open source build scaffolding utility for web apps.",
"main": "index.js",
"repository": "https://github.com/patternfly/patternfly-react-seed.git",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"test": "jest",
"lint": "eslint ./src/",
"build:bundle-profile": "webpack --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist"
},
"devDependencies": {
"@axe-core/react": "^4.2.2",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@patternfly/react-core": "^4.135.0",
"babel-jest": "^27.0.5",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^5.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.29.0",
"eslint-plugin-patternfly-react": "^4.1.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"img-loader": "^4.0.0",
"jest": "^27.0.5",
"mini-css-extract-plugin": "^1.6.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"style-loader": "^3.0.0",
"svg-url-loader": "^7.1.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.40.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}