forked from andresgalante/patternfly-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 4.22 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@patternfly/patternfly",
"description": "Assets, source, tooling, and content for PatternFly 4",
"version": "0.0.0-development",
"keywords": [],
"license": "MIT",
"scripts": {
"backstop:approve": "node test/approve-conflicts.js",
"backstop:init": "node test/create-references.js",
"build-patternfly": "gulp build",
"build": "npm run build-patternfly && npm run build:site",
"build:pficons": "gulp pfIcons",
"build:pficonfont": "gulp pfIconFont",
"build:docs": "gulp buildDocs",
"build:site": "npm run copy-assets && gatsby build",
"clean": "gatsby clean && gulp clean",
"copy-assets": "gulp copyAssets",
"dev": "concurrently \"npm run copy-assets\" \"gulp watchSASS\" \"gatsby develop\"",
"dev:lite": "gulp develop",
"dev:expose": "npm run dev -- -H 0.0.0.0",
"develop": "npm run dev",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write src/**/*.js",
"lint": "npm run lint:css && npm run lint:styles && 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:styles --fix",
"lint:sass": "stylelint 'src/**/*.scss'",
"lint:js": "eslint .",
"lint:hbs": "true",
"precommit": "lint-staged",
"sassdoc": "sassdoc ./src/patternfly/**/*.scss --parse > sassdoc/data.json",
"serve": "gatsby serve",
"start": "npm run dev",
"test": "node test/test.js",
"test:a11y": "patternfly-a11y .cache/fullscreenPages.json",
"update-modifiers": "./scripts/extractModifiers.sh",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.3.1",
"@fortawesome/fontawesome": "^1.1.8",
"@mdx-js/mdx": "^1.1.5",
"@mdx-js/react": "^1.1.5",
"@octokit/rest": "^16.40.1",
"@patternfly/patternfly-a11y": "1.0.4",
"@patternfly/react-core": "^4.15.0",
"@patternfly/react-table": "^4.4.0",
"babel-eslint": "^8.2.3",
"browser-sync": "^2.26.7",
"cheerio": "^1.0.0-rc.3",
"commander": "^5.1.0",
"concurrently": "^5.0.0",
"cssnano": "^4.1.10",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-import-resolver-alias": "^1.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^5.0.0",
"gatsby": "2.21.0",
"gatsby-theme-patternfly-org": "^4.2.6",
"gatsby-plugin-mdx": "1.1.7",
"glob": "^7.1.2",
"gray-matter": "^4.0.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-iconfont": "^10.0.3",
"gulp-iconfont-css": "^3.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"husky": "^1.3.1",
"lint-staged": "^9.2.5",
"node-plop": "^0.18.0",
"node-sass": "^4.11.0",
"postcss": "^7.0.18",
"postcss-css-variables": "^0.13.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.12.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rehype-raw": "^4.0.2",
"rehype-stringify": "^8.0.0",
"remark-rehype": "^7.0.0",
"remark-stringify": "^8.1.0",
"sass-graph": "^3.0.4",
"semantic-release": "17.0.4",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.0.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-order": "^0.8.0",
"stylelint-scss": "^2.5.0",
"stylelint-value-no-unknown-custom-properties": "^2.0.0",
"surge": "^0.21.3"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "prerelease"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --fix",
"git add"
]
}
}