forked from patternfly/patternfly-react-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "patternfly-seed",
"version": "0.0.1",
"description": "An open source build scaffolding utility for web apps.",
"main": "index.js",
"repository": "https://github.com/seanforyou23/patternfly-seed.git",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "yarn clean",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --hot --color --progress --info=true --config webpack.dev.js",
"test": "jest",
"lint": "eslint ./src/",
"build:bundle-profile": "webpack --profile --json > stats.json",
"bundle-profile:analyze": "yarn build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "yarn rimraf dist"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"@patternfly/react-core": "^1.38.2",
"@types/jest": "^23.3.9",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"eslint": "^4.19.1",
"eslint-plugin-patternfly-react": "^0.2.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.15.2",
"react": "^16.6.3",
"react-axe": "^3.0.2",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
}
}