-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.98 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
{
"name": "dash_extendable_graph",
"version": "1.3.1",
"description": "A Dash Graph component modified to support use of figure.data-structured input to extend and/or add traces.",
"repository": {
"type": "git",
"url": "https://github.com/bcliang/dash-extendable-graph.git"
},
"bugs": {
"url": "https://github.com/bcliang/dash-extendable-graph/issues"
},
"homepage": "https://github.com/bcliang/dash-extendable-graph",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf dist build man inst R",
"start": "wp --config config/serve.config.js",
"validate-init": "python _validate_init.py",
"lint": "run-s private:lint.*",
"private:lint.eslint": "eslint src tests --fix",
"private:lint.prettier": "prettier --config .prettierrc --write src/**/*.js --list-different",
"private:lint.flake8": "flake8 --ignore E501,F401,W503 --exclude=dash_extendable_graph,node_modules,venv --show-source --statistics",
"format": "run-s private:format.*",
"private:format.eslint": "eslint src tests --fix",
"private:format.prettier": "prettier --config .prettierrc --write src/**/*.js src/**/**/*.js",
"test": "run-s -c test:py lint format",
"test:py": "pytest tests",
"generator": "node generator/plotly.js",
"prepublishOnly": "npm run validate-init && npm run lint && npm run format && npm run build",
"build:js-dev": "wp --config config/webpack.config.js --mode development",
"build:js": "npm run lint && wp --config config/webpack.config.js --mode production",
"build:py": "dash-generate-components ./src/lib/components dash_extendable_graph -p package.json",
"build:py_and_r": "dash-generate-components ./src/lib/components dash_extendable_graph -p package.json --r-prefix 'r'",
"build": "npm run generator && npm run build:js && npm run build:js-dev && npm run build:py",
"watch": "watch \"npm run build\" src --wait 5"
},
"author": {
"name": "Brad Liang",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"plotly.js": "^1.58.4",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react-resize-detector": "^6.6.3"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"component-playground": "^3.2.1",
"css-loader": "^3.6.0",
"eslint": "^7.20.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^16.13.1",
"react-docgen": "^5.3.1",
"react-dom": "^16.13.1",
"react-resize-detector": "^6.6.3",
"style-loader": "^1.3.0",
"styled-jsx": "^3.4.4",
"webpack": "^4.46.0",
"webpack-merge": "^5.7.3",
"webpack-nano": "^1.1.1",
"webpack-plugin-serve": "^1.4.1"
},
"engines": {
"node": ">=10.13.0",
"npm": ">=6.14.8"
}
}