-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 2.3 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
{
"name": "dash_chart_editor",
"version": "0.0.1a4",
"description": "Dash wrapper for Plotly's react-chart-editor",
"repository": {
"type": "git",
"url": "git://github.com/BSd3v/dash-chart-editor.git"
},
"bugs": {
"url": "https://github.com/BSd3v/dash-chart-editor/issues"
},
"homepage": "https://github.com/BSd3v/dash-chart-editor",
"main": "build/index.js",
"scripts": {
"validate-init": "python _validate_init.py",
"prepublishOnly": "npm run validate-init",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components dash_chart_editor -p package-info.json --r-prefix '' --jl-prefix ''",
"build": "npm run build:js && npm run build:backends",
"postbuild": "es-check es2015 dash_chart_editor/*.js",
"private::format.eslint": "eslint --quiet --fix src",
"private::format.prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "run-s private::format.*",
"private::lint.eslint": "eslint src",
"private::lint.prettier": "prettier \"src/**/*.{js,jsx,ts,tsx}\" --list-different",
"lint": "run-s private::lint.*"
},
"author": "Bryan Schroeder <[email protected]>",
"license": "MIT",
"dependencies": {
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"@plotly/dash-component-plugins": "^1.2.0",
"copyfiles": "^2.1.1",
"es-check": "^7.1.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-docgen": "^5.4.3",
"react-dom": "^16.14.0",
"style-loader": "^3.3.1",
"styled-jsx": "^5.1.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"react-chart-editor": "latest"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
},
"browserslist": [
"last 7 years and not dead"
]
}