-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
89 lines (89 loc) · 3.34 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
{
"name": "dash-ag-grid",
"version": "31.3.0",
"description": "Dash wrapper around AG Grid, the best interactive data grid for the web.",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-ag-grid.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-ag-grid/issues"
},
"homepage": "https://github.com/plotly/dash-ag-grid",
"main": "dash_ag_grid/dash_ag_grid.min.js",
"scripts": {
"pre-flight-version": "python test_version.py",
"pre-flight-dag-version": "python test_versioning.py",
"prepublishOnly": "rimraf -rf lib && babel src --out-dir lib --copy-files --config-file ./.babelrc && rimraf --glob -rf lib/jl/ lib/*.jl",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_ag_grid -p package-info.json --r-prefix '' --jl-prefix ''",
"build": "run-s pre-flight-version && run-s prepublishOnly build:js build:backends",
"postbuild": "es-check es2017 dash_ag_grid/*.js",
"private::format.eslint": "eslint --quiet --fix src",
"private::format.prettier": "prettier --write src --ignore-path=.prettierignore",
"format": "run-s private::format.*",
"private::lint.eslint": "eslint src",
"private::lint.prettier": "prettier src --list-different --ignore-path=.prettierignore",
"lint": "run-s private::lint.*",
"dist": "npm run build && run-s pre-flight-dag-version && rimraf build dist && python setup.py sdist bdist_wheel"
},
"author": "Plotly <[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"ag-grid-community": "31.3.2",
"ag-grid-enterprise": "31.3.2",
"ag-grid-react": "31.3.2",
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"d3-format": "^3.1.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"esprima": "^4.0.1",
"ramda": "^0.29.1",
"react-markdown": "^8.0.7",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.1",
"static-eval": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"es-check": "^7.1.1",
"esbuild-loader": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-docgen": "^5.4.3",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"style-loader": "^3.3.4",
"styled-jsx": "^5.1.2",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"files": [
"/dash_ag_grid/*{.js,.map}",
"/lib/"
],
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"browserslist": [
"last 7 years and not dead"
]
}