This repository was archived by the owner on Aug 29, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 5.15 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 5.15 KB
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
{
"name": "dash-table",
"version": "4.2.0",
"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",
"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-dev": "run-s \"private::build -- --mode development --config webpack.dev.config.js\"",
"private::build:js-test": "run-s \"private::build -- --mode development --config webpack.test.config.js\"",
"private::build:js-test-watch": "run-s \"private::build -- --mode development --config webpack.test.config.js --watch\"",
"private::build:py": "dash-generate-components src/dash-table/dash/DataTable.js dash_table -p package-info.json --r-prefix ''",
"private::host_dash8081": "python tests/cypress/dash/v_be_page.py",
"private::host_dash8082": "python tests/cypress/dash/v_copy_paste.py",
"private::host_dash8083": "python tests/cypress/dash/v_fe_page.py",
"private::host_dash8084": "python tests/cypress/dash/v_data_loading.py",
"private::host_dash8085": "python tests/cypress/dash/v_default.py",
"private::host_js": "http-server ./dash_table -c-1 --silent",
"private::lint:ts": "tslint --project tsconfig.json --config tslint.json",
"private::lint:py": "flake8 --exclude=DataTable.py,__init__.py,_imports_.py dash_table",
"private::wait_dash8081": "wait-on http://localhost:8081",
"private::wait_dash8082": "wait-on http://localhost:8082",
"private::wait_dash8083": "wait-on http://localhost:8083",
"private::wait_dash8084": "wait-on http://localhost:8084",
"private::wait_dash8085": "wait-on http://localhost:8085",
"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.server": "cypress run --browser chrome --spec 'tests/cypress/tests/server/**/*'",
"private::test.standalone": "cypress run --browser chrome --spec 'tests/cypress/tests/standalone/**/*'",
"build.watch": "webpack-dev-server --content-base dash_table --mode development --config webpack.dev.config.js",
"build": "run-s private::build:js private::build:py",
"lint": "run-s private::lint:*",
"test.server": "run-p --race private::host* private::test.server",
"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@plot.ly>",
"maintainer": "Ryan Patrick Kyle <ryan@plot.ly>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@cypress/webpack-preprocessor": "^4.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-regular-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@percy-io/percy-storybook": "^2.1.0",
"@storybook/cli": "^5.1.11",
"@storybook/react": "^5.1.11",
"@types/d3-format": "^1.3.1",
"@types/papaparse": "^5.0.1",
"@types/ramda": "^0.26.21",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-select": "^1.3.4",
"babel-loader": "^8.0.6",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"cypress": "^3.4.1",
"d3-format": "^1.3.2",
"fast-isnumeric": "^1.1.3",
"file-loader": "^4.2.0",
"http-server": "^0.11.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"npm": "^6.11.2",
"npm-run-all": "^4.1.5",
"papaparse": "^5.0.2",
"ramda": "^0.26.1",
"raw-loader": "^3.1.0",
"react": "16.9.0",
"react-docgen": "^4.1.1",
"react-dom": "16.9.0",
"react-select": "^1.3.0",
"remarkable": "^2.0.0",
"sheetclip": "^0.3.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"typescript": "^3.6.2",
"wait-on": "^3.3.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-preprocessor": "^0.1.12",
"xlsx": "^0.15.1"
},
"files": [
"/dash_table/bundle*{.js,.map}"
],
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">=0.14",
"react-dom": ">=0.14"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}