forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.25 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
{
"name": "@patternfly/react-lerna-root",
"private": true,
"version": "0.0.0",
"description": "This library provides a set of common React components for use with the PatternFly reference implementation.",
"repository": {
"type": "git",
"url": "https://github.com/patternfly/patternfly-react.git"
},
"engines": {
"node": ">=8.9.0",
"npm": ">=5.5.1",
"yarn": ">=1.6.0"
},
"keywords": [
"react",
"patternfly",
"component",
"library"
],
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/patternfly-react/issues"
},
"homepage": "https://github.com/patternfly/patternfly-react#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.9.0",
"@octokit/rest": "^16.39.0",
"@types/enzyme": "3.9.0",
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-jest": "^25.1.0",
"change-case": "^3.0.2",
"codecov": "^3.7.2",
"commitizen": "^3.0.7",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.4.0",
"eslint": "5.6.0",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"jest": "24.1.0",
"jest-cli": "24.1.0",
"lerna": "3.16.2",
"minimist": "^1.2.0",
"mutation-observer": "^1.0.3",
"plop": "^2.0.0",
"prettier": "^1.18.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"surge": "^0.21.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"ttypescript": "^1.5.12"
},
"scripts": {
"analyze": "yarn workspace @patternfly/react-docs analyze",
"bootstrap": "lerna bootstrap",
"build": "yarn build:generate && yarn build:esm && yarn build:cjs",
"build:cjs": "tsc --build packages/tsconfig.cjs.json -v",
"build:esm": "ttsc --build packages/tsconfig.json -v",
"build:integration": "lerna run build:demo-app --stream",
"build:docs": "yarn workspace @patternfly/react-docs build:docs",
"build:umd": "yarn workspace @patternfly/react-core build:umd",
"build:generate": "lerna run generate --parallel --stream",
"clean": "yarn clean:build && lerna run clean --parallel",
"clean:build": "rimraf .cache .eslintcache coverage",
"commit": "git-cz",
"generate": "yarn plop",
"lint": "node --max-old-space-size=4096 node_modules/.bin/eslint --ext js,jsx,ts,tsx --cache",
"lint:md": "yarn eslint packages --ext md --no-eslintrc --config .eslintrc-md.json --cache",
"lint:ts": "yarn lint packages",
"lint:versions": "node scripts/verifyPatternflyVersions.js",
"prettier": "node node_modules/.bin/prettier --write \"packages/**/*.{js,jsx,ts,tsx}\" \"scripts/**/*.{js,jsx,ts,tsx}\"",
"serve:docs": "yarn workspace @patternfly/react-docs serve",
"serve:integration": "lerna run serve:demo-app",
"start": "yarn build && concurrently --kill-others \"yarn watch\" \"yarn workspace @patternfly/react-docs develop\"",
"start:cypress": "lerna run cypress:open",
"start:demo-app": "lerna run start:demo-app --stream",
"start:pf4": "yarn start",
"storybook": "start-storybook -c storybook -p 6006",
"test": "jest packages",
"test:pf4": "yarn test",
"test:a11y": "lerna run test:a11y --stream",
"test:current": "jest --watch",
"test:integration": "yarn workspace @patternfly/react-integration test:integration",
"test:watch": "jest --watchAll",
"uninstall": "find . -name node_modules -type d | xargs rm -rf",
"watch": "yarn build:esm --watch"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"packages": [
"packages/**"
]
}
}