-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.92 KB
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
{
"name": "react-equal-height",
"version": "2.19.0",
"description": "A React library with TypeScript support that automatically compares and sets the highest element height, including the ability to sort elements per row. Protected by the 'use client' directive, making it compatible with React Server Components and Next.js.",
"scripts": {
"build": "rm -rf ./dist && webpack --mode=production --config ./webpack.config.js && webpack --mode=production --config ./webpack.config.js --env clean",
"server": "webpack-dev-server --mode=development --config webpack.config.js",
"test-ct-ui": "playwright test --ui -c playwright-ct.config.ts",
"test-ct": "playwright test -c playwright-ct.config.ts",
"prepublishOnly": "npm run build"
},
"repository": "git://github.com/loba-b/react-equal-height.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/loba-b"
},
"private": false,
"keywords": [
"react",
"react-hooks",
"equal-height",
"height",
"height-matching",
"responsive",
"web-development",
"frontend",
"dom-manipulation",
"react-server-components",
"nextjs",
"typescript",
"sort-per-row",
"sort-elements",
"dynamic-height",
"component-library"
],
"author": "Bartosz Loba",
"license": "MIT",
"bugs": "https://github.com/loba-b/react-equal-height/issues",
"homepage": "https://github.com/loba-b/react-equal-height#readme",
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@playwright/experimental-ct-react": "^1.52.0",
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.18",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"babel-core": "^6.26.3",
"babel-loader": "^9.2.1",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.1",
"playwright": "^1.52.0",
"postcss": "^8.4.49",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sass-embedded": "^1.89.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.8.3",
"webpack": "^5.99.8",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}