-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 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
{
"name": "@plotly/dash-player",
"version": "1.1.0",
"description": "Dash player component for videos",
"repository": {
"type": "git",
"url": "git://github.com/plotly/dash-player.git"
},
"homepage": "https://github.com/plotly/dash-player",
"bugs": {
"url": "https://github.com/plotly/dash-player/issues"
},
"main": "dash_player/dash_player.min.js",
"author": "Xing Han Lu <[email protected]>",
"maintainer": "Alex Hsu <[email protected]>",
"license": "MIT",
"dependencies": {
"react-player": "2.12.0"
},
"scripts": {
"start": "webpack-serve ./webpack.serve.config.js --open",
"validate-init": "python _validate_init.py",
"build:js-dev": "webpack",
"build:js": "webpack",
"build:backends": "dash-generate-components ./src/lib/components dash-player --r-prefix ''",
"build": "npm run build:js && npm run build:js-dev && npm run build:backends",
"lint": "flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics && flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics",
"test": "pytest"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@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-eslint": "^10.0.2",
"babel-loader": "^9.1.2",
"copyfiles": "^2.4.1",
"css-loader": "^6.7.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"glob-parent": "6.0.2",
"react-docgen": "^5.4.3",
"style-loader": "^3.3.1",
"styled-jsx": "^5.1.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"engines": {
"node": "^16.17.0",
"npm": "^8.15.0"
}
}