-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.47 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
{
"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": "yarn clean",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --hot --color --progress --info=true --config webpack.dev.js",
"test": "jest",
"lint": "tslint -c ./tslint.json --project .",
"format": "prettier --check --write ./src/**/*.{tsx,ts,js}",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "yarn build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"@types/react-router-dom": "^4.3.4",
"@types/victory": "^31.0.14",
"@types/webpack": "^4.32.1",
"css-loader": "^3.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.4.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"imagemin": "^7.0.0",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.15.2",
"prop-types": "^15.6.1",
"raw-loader": "^3.1.0",
"react": "^16.8.4",
"react-axe": "^3.0.2",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"svg-url-loader": "^3.0.0",
"ts-jest": "^24.0.0",
"ts-loader": "^6.0.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@patternfly/react-core": "^3.77.2",
"@patternfly/react-icons": "^3.10.15",
"@patternfly/react-styles": "^3.5.7",
"react-document-title": "^2.0.3",
"react-router-dom": "^5.0.1",
"react-router-last-location": "^2.0.1"
}
}