-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 3.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
{
"name": "registry-viewer",
"author": "Red Hat",
"version": "1.0.0",
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"dev": "next",
"prebuild": "node ./manifest.js && node checkConfigTypes.js",
"build": "next build",
"start": "next start",
"clean": "rimraf .next/ .nyc_output/ coverage/ docs/ out/ node_modules/",
"typedoc:build": "typedoc --tsconfig .",
"typedoc:start": "npx serve docs",
"test": "jest & cypress run",
"test:jest": "jest",
"test:jest-watch": "jest --watchAll",
"test:cypress": "concurrently --names 'CYPRESS,SERVER' --prefix-colors 'yellow,blue' \"yarn cypress open\" \"yarn build && yarn start\"",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@next/bundle-analyzer": "^11.0.1",
"@patternfly/react-core": "^4.147.0",
"@patternfly/react-icons": "^4.11.8",
"@segment/analytics-next": "^1.31.2",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.0",
"jszip": "^3.7.1",
"next": "^12.0.2",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.1",
"next-pwa": "^5.2.21",
"next-transpile-modules": "^8.0.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-syntax-highlighter": "^15.4.3",
"tslib": "^2.3.1",
"typescript-is": "^0.18.3"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.3",
"@types/file-saver": "^2.0.3",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.9",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.27.0",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-patternfly-react": "^4.1.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"lint-staged": "^11.0.1",
"prettier": "2.3.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.4",
"typescript": "^4.3.4",
"webpack": "^5.38.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,json}": "prettier --write"
},
"optionalDependencies": {
"@cypress/code-coverage": "^3.9.9",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"babel-jest": "^27.3.1",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cypress": "^9.0.0",
"debug": "^4.3.2",
"enquirer": "^2.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"react-test-renderer": "^17.0.2",
"typedoc": "^0.21.4",
"typedoc-plugin-merge-modules": "^3.0.0"
}
}