-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
98 lines (98 loc) · 3.59 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
98
{
"name": "@patternfly/quickstarts",
"version": "2.3.3",
"description": "PatternFly quick starts",
"files": [
"src",
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly/patternfly-quickstarts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/patternfly-quickstarts/issues"
},
"homepage": "https://github.com/patternfly/patternfly-quickstarts#readme",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "rollup -c && yarn purge-css && yarn combine && yarn min-css && yarn min-css-standalone && yarn docs:copy",
"watch": "rollup -w --config rollup-quick.config.js",
"quick": "rollup --config rollup-quick.config.js",
"combine": "node ./combineCss.js",
"test": "LANG=en_US.UTF-8 jest",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "yarn type-check && yarn lint && yarn test",
"build:ts": "yarn clean && tsc --p tsconfig.json",
"post-css": "yarn purge-css && yarn min-css && yarn min-css-standalone",
"purge-css": "purgecss --config ./purgecss.config.js",
"min-css": "cleancss dist/quickstarts.css -o dist/quickstarts.min.css",
"min-css-standalone": "cleancss -o dist/quickstarts-standalone.min.css dist/patternfly-nested.css dist/quickstarts-standalone.css",
"docs:develop": "pf-docs-framework start",
"docs:build": "pf-docs-framework build all --output public",
"docs:serve": "pf-docs-framework serve public --port 5000",
"docs:screenshots": "pf-docs-framework screenshots --urlPrefix http://localhost:5000",
"docs:copy": "mkdir -p dist/patternfly-docs && cp -R patternfly-docs/content/extensions/quick-starts dist/patternfly-docs"
},
"peerDependencies": {
"@patternfly/react-core": ">=4.115.2",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"showdown": ">=1.8.6"
},
"dependencies": {
"@patternfly/react-catalog-view-extension": "^4.93.15",
"dompurify": "^2.2.6",
"history": "^5.0.0",
"showdown": "1.8.6"
},
"devDependencies": {
"@patternfly/documentation-framework": "1.0.2",
"@patternfly/patternfly": "^4.222.4",
"@patternfly/react-core": "^4.267.6",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-styles": "4.92.6",
"@patternfly/react-tokens": "4.94.6",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@testing-library/react": "^11.2.2",
"@types/dompurify": "^2.2.2",
"@types/enzyme": "^3.10.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/history": "^4.7.8",
"@types/node": "^14.14.35",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"clean-css-cli": "^4.3.0",
"concat-files": "^0.1.1",
"dart-sass": "^1.25.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"node-sass-glob-importer": "^5.3.2",
"prettier": "^2.1.2",
"purgecss": "^4.0.0",
"react": "^16.8.0",
"react-axe": "^3.5.4",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.8.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"rollup": "^2.37.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-visualizer": "^5.5.0",
"sass": "^1.35.2",
"tslib": "^2.0.3"
}
}