-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 3.77 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
{
"name": "@stolostron/react-data-view",
"version": "2.3.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.prod.json && cpy 'src/**/*.svg' 'src/**/*.css' lib",
"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:pages --prefix-colors cyan,green,blue,magenta,gray",
"tsc": "tsc --noEmit",
"eslint": "eslint src demo",
"prettier": "prettier --check src demo",
"prettier:fix": "prettier --write src demo",
"upgrade": "npx npm-check-updates '/^@patternfly.*$/' --upgrade --target latest --doctor && npx npm-check-updates '/^(?!@patternfly).*$/' --upgrade --target minor --doctor && npm audit fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stolostron/react-data-view.git"
},
"peerDependencies": {
"@patternfly/react-core": "^5",
"@patternfly/react-drag-drop": "^5",
"@patternfly/react-icons": "^5",
"@patternfly/react-table": "^5",
"react": ">=17",
"react-dom": ">=17",
"react-router-dom-v5-compat": "^6"
},
"dependencies": {
"debounce": "1.2.1",
"fuse.js": "6.6.2",
"get-value": "3.0.1",
"luxon": "^3.4.4"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/preset-react": "7.24.1",
"@babel/preset-typescript": "7.24.1",
"@faker-js/faker": "7.6.0",
"@patternfly/react-core": "^5.3.3",
"@patternfly/react-drag-drop": "^5.3.3",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-table": "^5.3.3",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.13",
"@react-hook/resize-observer": "1.2.6",
"@svgr/webpack": "6.5.1",
"@types/css-minimizer-webpack-plugin": "3.2.0",
"@types/debounce": "1.2.4",
"@types/get-value": "3.0.5",
"@types/html-webpack-plugin": "3.2.9",
"@types/luxon": "^3.4.2",
"@types/mini-css-extract-plugin": "2.5.0",
"@types/node": "14.18.63",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.3.0",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "8.3.0",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"concurrently": "7.6.0",
"cpy": "9.0.1",
"cpy-cli": "4.2.0",
"css-loader": "6.11.0",
"css-minimizer-webpack-plugin": "4.2.2",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-i18n-json": "^4.0.0",
"eslint-plugin-i18next": "5.2.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"html-webpack-plugin": "5.6.0",
"mini-css-extract-plugin": "2.9.0",
"prettier": "2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "0.14.2",
"react-router-dom-v5-compat": "^6.24.0",
"rimraf": "3.0.2",
"style-loader": "3.3.4",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"webpack": "5.91.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
}
}