-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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": "@nadavshaar/react-grid-table",
"version": "1.1.2",
"description": "A modular table, based on a CSS grid layout, optimized for customization.",
"author": "Nadav Shaar",
"license": "MIT",
"repository": "NadavShaar/react-grid-table",
"homepage": "https://nadavshaar.github.io/react-grid-table/",
"contributors": [
{
"name": "Nadav Shaar",
"email": "[email protected]",
"url": "https://github.com/NadavShaar"
},
{
"name": "Ilay Ofir",
"email": "[email protected]",
"url": "https://github.com/IlayOfir"
}
],
"keywords": [
"react",
"table",
"grid",
"css-grid",
"list",
"modular",
"sort",
"resize",
"reorder",
"pin",
"columns",
"rows",
"sticky-header",
"row-selection",
"inline-editing",
"dynamic-row-height",
"visibility-management",
"search",
"header",
"footer",
"cells",
"pagination",
"async",
"row-virtualizer"
],
"main": "dist/index.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "webpack serve --config demo/webpack.config.js",
"start-async": "cross-env TARGET=async webpack serve --config demo/webpack.config.js",
"start-async-controlled": "cross-env TARGET=asyncControlled webpack serve --config demo/webpack.config.js",
"start-async-managed": "cross-env TARGET=asyncManaged webpack serve --config demo/webpack.config.js",
"watch": "webpack -w",
"build": "webpack",
"build-demo": "webpack --config demo/webpack.config.js",
"deploy-demo": "gh-pages -d demo/dist",
"test": ""
},
"peerDependencies": {
"react": ">17.0.1",
"react-dom": ">17.0.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"prettier": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.0"
},
"files": [
"dist"
],
"dependencies": {
"react-virtual": "^2.3.0"
}
}