forked from patternfly/patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.93 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@patternfly/patternfly",
"description": "Assets, source, tooling, and content for PatternFly 4",
"version": "0.0.0-development",
"keywords": [],
"license": "MIT",
"scripts": {
"a11y": "patternfly-a11y --config patternfly-a11y.config",
"backstop:test": "backstop test --config='backstop.js'",
"backstop:approve": "backstop approve --config='backstop.js'",
"build-patternfly": "gulp buildPatternfly",
"build": "gulp build",
"build:docs": "gulp buildWebpack",
"build:pficons": "gulp pfIcons",
"build:pficonfont": "gulp pfIconFont",
"clean": "gulp clean",
"superclean": "npm install && npm run clean && git clean -dfx",
"dev": "gulp develop",
"develop": "gulp develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write src/**/*.js",
"lint": "npm run lint:css && npm run lint:sass && npm run lint:js",
"lint:size": "node .circleci/css-size-report/sizeReport run",
"lint:css": "gulp lintCSS",
"lint:fix": "npm run lint:js -- --fix && npm run lint:sass -- --fix",
"lint:sass": "stylelint 'src/**/*.scss'",
"lint:js": "eslint .",
"screenshots": "rimraf patternfly-docs/generated/**/*.png && pf-docs-framework screenshots --urlPrefix http://localhost:5000",
"serve": "pf-docs-framework serve public",
"start": "gulp develop",
"test": "npm run a11y",
"workflows": "node .github/generate-workflows",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@fortawesome/fontawesome": "^1.1.8",
"@octokit/rest": "^20.0.1",
"@patternfly/documentation-framework": "5.1.7",
"@patternfly/patternfly-a11y": "4.3.1",
"@patternfly/react-code-editor": "5.0.0",
"@patternfly/react-core": "5.0.0",
"@patternfly/react-table": "5.0.0",
"@starptech/prettyhtml": "^0.10.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.3.3",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-iconfont": "^11.0.1",
"gulp-iconfont-css": "^3.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"node-plop": "^0.31.1",
"postcss": "^8.4.27",
"postcss-css-variables": "^0.19.0",
"postcss-preset-env": "^9.1.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-parse": "^10.0.2",
"remark-stringify": "^10.0.3",
"rimraf": "*",
"sass": "^1.64.2",
"sass-graph": "^4.0.1",
"stylelint": "^15.10.2",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-use-logical-spec": "^5.0.0",
"surge": "^0.23.1",
"unified": "^10.1.2",
"webpack": "^5.88.2"
},
"resolutions": {
"@babel/preset-env": "7.18.2",
"monaco-editor": "0.34.1"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}