-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "@mui/x-data-grid",
"version": "5.11.1",
"description": "The community edition of the data grid component (MUI X).",
"author": "MUI Team",
"main": "src/index.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/mui-x/issues"
},
"homepage": "https://mui.com/x/react-data-grid/",
"sideEffects": false,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"react-component",
"material-ui",
"mui",
"react-table",
"table",
"datatable",
"data-table",
"datagrid",
"data-grid"
],
"scripts": {
"typescript": "tsc -p tsconfig.json",
"build": "yarn build:legacy && yarn build:modern && yarn build:node && yarn build:stable && yarn build:types && yarn build:copy-files ",
"build:legacy": "node ../../../scripts/build legacy",
"build:modern": "node ../../../scripts/build modern",
"build:node": "node ../../../scripts/build node",
"build:stable": "node ../../../scripts/build stable",
"build:copy-files": "node ../../../scripts/copyFiles.js",
"build:types": "node ../../../scripts/buildTypes",
"prebuild": "rimraf build tsconfig.build.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "https://github.com/mui/mui-x.git",
"directory": "packages/grid/x-data-grid"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"@mui/utils": "^5.7.0",
"clsx": "^1.1.1",
"prop-types": "^15.8.1",
"reselect": "^4.1.5"
},
"peerDependencies": {
"@mui/material": "^5.2.8",
"@mui/system": "^5.2.8",
"react": "^17.0.2 || ^18.0.0"
},
"setupFiles": [
"<rootDir>/src/setupTests.js"
],
"engines": {
"node": ">=12.0.0"
}
}