This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
127 lines (127 loc) · 5.45 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "dash-table",
"version": "4.10.1",
"description": "Dash table",
"repository": {
"type": "git",
"url": "git@github.com:plotly/dash-table.git"
},
"bugs": {
"url": "https://github.com/plotly/dash-table/issues"
},
"homepage": "https://github.com/plotly/dash-table",
"main": "dash_table/bundle.js",
"scripts": {
"preprivate::opentests": "run-s private::wait*",
"preprivate::test.server": "run-s private::wait_dash*",
"preprivate::test.standalone": "run-s private::wait_js",
"pretest.standalone": "run-s private::build:js-test-standalone",
"private::build": "node --max_old_space_size=4096 node_modules/webpack/bin/webpack --display-reasons --bail",
"private::build:js": "run-s \"private::build -- --mode production\"",
"private::build:js-test": "run-s \"private::build -- --mode development --config webpack.test.config.js\"",
"private::build:js-test-standalone": "run-s \"private::build -- --mode development --config webpack.test.standalone.config.js\"",
"private::build:js-test-watch": "run-s \"private::build -- --mode development --config webpack.test.config.js --watch\"",
"private::build:backends": "dash-generate-components src/dash-table/dash/DataTable.js dash_table -p package-info.json && cp dash_table_base/** dash_table/ && dash-generate-components src/dash-table/dash/DataTable.js dash_table -p package-info.json --r-prefix 'dash' --r-suggests 'dash' --jl-prefix 'dash'",
"private::format.ts": "npm run private::lint.ts -- --fix",
"private::format.prettier": "prettier --config .prettierrc --write \"src/**/*.{js,ts,tsx}\"",
"private::format.black": "black --exclude dash_table .",
"private::host_js": "http-server ./dash_table -c-1 --silent",
"private::lint.ts": "tslint --project tsconfig.json --config tslint.json",
"private::lint.flake": "flake8 --exclude=dash_table,node_modules,venv",
"private::lint.black": "black --check --exclude dash_table .",
"private::lint.prettier": "prettier --config .prettierrc \"src/**/*.{js,ts,tsx}\" --list-different",
"private::wait_js": "wait-on http://localhost:8080",
"private::opentests": "cypress open",
"private::test.python": "python -m unittest tests/unit/format_test.py",
"private::test.unit": "cypress run --browser chrome --spec 'tests/cypress/tests/unit/**/*'",
"private::test.standalone": "cypress run --browser chrome --spec 'tests/cypress/tests/standalone/**/*'",
"build.watch": "webpack-dev-server --disable-host-check --content-base dash_table --mode development --config webpack.dev.config.js",
"build": "run-s private::build:js private::build:backends",
"postbuild": "es-check es5 dash_table/*.js",
"format": "run-s private::format.*",
"lint": "run-s private::lint.*",
"test.server": "pytest tests/selenium",
"test.standalone": "run-p --race private::host_js private::test.standalone",
"test.unit": "run-s private::test.python private::test.unit",
"test.visual": "build-storybook && percy-storybook",
"test.visual-local": "build-storybook",
"test.watch": "run-p --race \"private::build:js-test-watch\" --race private::host* private::opentests"
},
"author": "Chris Parmer <chris@plotly.com>",
"maintainer": "Ryan Patrick Kyle <ryan@plotly.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@cypress/webpack-preprocessor": "^4.1.1",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@percy/storybook": "^3.3.0",
"@plotly/dash-component-plugins": "^1.2.0",
"@plotly/webpack-dash-dynamic-import": "^1.1.5",
"@storybook/cli": "^6.0.5",
"@storybook/react": "^6.0.5",
"@types/d3-format": "^1.3.1",
"@types/highlight.js": "^9.12.4",
"@types/papaparse": "^5.0.6",
"@types/ramda": "^0.26.21",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-select": "^3.0.16",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"css.escape": "^1.5.1",
"cypress": "^3.8.1",
"d3-format": "^1.4.4",
"es-check": "^5.1.0",
"fast-isnumeric": "^1.1.4",
"file-loader": "^6.0.0",
"highlight.js": "^10.1.2",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"papaparse": "^5.2.0",
"prettier": "^2.0.5",
"ramda": "^0.27.1",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-docgen": "^5.3.0",
"react-dom": "^16.13.1",
"react-select": "^1.3.0",
"remarkable": "^2.0.1",
"sheetclip": "^0.3.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7",
"wait-on": "^5.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-preprocessor": "^0.1.12",
"xlsx": "^0.16.6"
},
"files": [
"/dash_table/async-*{.js,.map}",
"/dash_table/bundle*{.js,.map}"
],
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.1.0"
}
}