-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.69 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
{
"name": "elv-video-editor",
"version": "3.1.8",
"description": "",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/eluv-io/elv-video-editor",
"scripts": {
"bump-version": "npm --git-tag-version --no-commit-hooks version patch",
"serve": "webpack-dev-server --host 0.0.0.0 --hot --port 8083",
"build": "rm -rf dist/* && NODE_ENV=production node ./node_modules/webpack-cli/bin/cli.js -p --devtool none",
"add-build": "git add dist",
"lint": "npm run fix-scss ; npm run lint-scss ; npm run fix-js",
"lint-show": "npm run lint-scss ; npm run lint-js",
"lint-js": "./node_modules/.bin/eslint \"src/**/*.js\"",
"lint-scss": "./node_modules/sass-lint/bin/sass-lint.js -c .scss-lint.yml -v -q",
"fix-js": "npm run lint-js -- --fix",
"fix-scss": "./node_modules/sass-lint-auto-fix/dist/index.js"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@eluvio/elv-client-js": "^4.0.104",
"babel-preset-mobx": "^2.0.0",
"dash-js": "^1.3.5",
"dashjs": "^2.9.3",
"deep-object-diff": "^1.1.0",
"elv-components-js": "git+https://github.com/eluv-io/elv-components-js.git",
"fraction.js": "^4.0.12",
"hls.js": "^1.3.5",
"m3u8-parser": "^4.7.0",
"mime-types": "^2.1.35",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"node-interval-tree": "^1.3.3",
"prop-types": "^15.7.2",
"rc-slider": "^8.6.9",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-resizable": "^1.8.0",
"resize-observer-polyfill": "^1.5.1",
"tiff.js": "^1.0.0",
"url-join": "^4.0.0",
"vtt.js": "^0.13.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.4.3",
"autoprefixer": "^9.5.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^2.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"regenerator-runtime": "^0.12.1",
"sass": "^1.51.0",
"sass-lint": "^1.12.1",
"sass-lint-auto-fix": "^0.21.0",
"sass-loader": "^10.4.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.22.1",
"svg-inline-loader": "^0.8.0",
"svg-inline-react": "^3.1.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^2.0.0"
},
"babel": {
"comments": true,
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"syntax-async-functions",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-jsx",
"@babel/plugin-syntax-object-rest-spread",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-react-jsx",
"@babel/plugin-transform-regenerator"
]
}
}