forked from patternfly-labs/react-form-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.57 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-labs/react-form-wizard",
"version": "1.8.5",
"description": "A Patternfly react wizard framework.",
"license": "Apache-2.0",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib",
"src",
"wizards"
],
"scripts": {
"build": "rimraf lib && tsc && npm run build:copy:src && npm run build:copy:wizards",
"build:copy:src": "cpy 'src/**/*.svg' 'src/**/*.css' lib/src",
"build:copy:wizards": "cpy 'wizards/**/*.svg' 'wizards/**/*.yaml' 'wizards/**/*.hbs' lib/wizards",
"start": "TS_NODE_PROJECT=webpack.tsconfig.json webpack serve --mode development --open",
"start:quiet": "TS_NODE_PROJECT=webpack.tsconfig.json webpack serve --mode development",
"pages": "TS_NODE_PROJECT=webpack.tsconfig.json webpack --mode production",
"test": "concurrently npm:tsc npm:eslint npm:prettier npm:cypress npm:pages --prefix-colors cyan,green,blue,magenta,gray",
"tsc": "tsc --noEmit -p tsconfig.eslint.json",
"eslint": "eslint src wizards",
"prettier": "prettier --check src wizards !**/*.hbs",
"prettier:fix": "prettier --write src wizards !**/*.hbs",
"cypress": "concurrently npm:start:quiet npm:cypress:run --prefix-colors cyan,green --kill-others --success first",
"cypress:open": "cypress open",
"cypress:run": "npm run cypress:wait && cypress run --config video=false",
"cypress:wait": "curl --no-progress-meter --retry-connrefused --retry 5 --retry-delay 5 'localhost:3000' 1>/dev/null",
"upgrade": "ncu --upgrade --doctor --target latest --reject react-router-dom,@types/react-router-dom,@types/node && ncu --upgrade --doctor --target minor && ncu --upgrade --doctor --target patch",
"coverage": "open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly-labs/react-form-wizard.git"
},
"peerDependencies": {
"@patternfly/react-icons": "4",
"@patternfly/react-core": "4",
"@patternfly/react-table": "4",
"react": "17",
"react-dom": "17"
},
"dependencies": {
"get-value": "3.0.1",
"klona": "2.0.5",
"set-value": "4.1.0",
"yaml": "1.10.2"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@cypress/code-coverage": "^3.10.0",
"@patternfly/react-core": "4.231.5",
"@patternfly/react-icons": "4.82.5",
"@patternfly/react-table": "4.100.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@react-hook/resize-observer": "1.2.6",
"@svgr/webpack": "6.3.1",
"@types/css-minimizer-webpack-plugin": "3.2.0",
"@types/get-value": "3.0.2",
"@types/html-webpack-plugin": "3.2.6",
"@types/mini-css-extract-plugin": "2.5.0",
"@types/node": "14.18.23",
"@types/react": "17.0.48",
"@types/react-dom": "17.0.17",
"@types/react-router-dom": "5.3.3",
"@types/set-value": "4.0.1",
"@types/validator": "13.7.5",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "4.7.1",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"babel-loader": "8.2.5",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"concurrently": "7.3.0",
"cpy-cli": "4.1.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"cypress": "9.7.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-i18n-json": "3.1.0",
"eslint-plugin-i18next": "5.2.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.6.0",
"fuse.js": "6.6.2",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.1",
"prettier": "2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-refresh": "0.14.0",
"react-router-dom": "5.3.3",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"ts-node": "10.9.1",
"tsconfig-paths": "3.14.1",
"type-fest": "2.18.0",
"typescript": "4.7.4",
"validator": "13.7.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3"
}
}