forked from scalarhq/videotranscode.space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.41 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
128
129
130
131
132
{
"name": "modfy",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@ffmpeg/ffmpeg": "git+https://github.com/Mozilla-Open-Lab-Etwas/ffmpeg.wasm.git",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@replit/clui-input": "^0.0.16",
"@replit/clui-session": "^0.0.1",
"@types/classnames": "^2.2.10",
"@types/node": "^12.0.0",
"@types/platform": "^1.3.2",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.5",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"downshift": "^6.0.0",
"eslint": "^7.13.0",
"finalhandler": "^1.1.2",
"fractional": "^1.0.0",
"javascript-terminal": "^1.0.3",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"new-github-issue-url": "^0.2.1",
"platform": "^1.3.5",
"postcss": "^8.1.9",
"rc-steps": "^4.1.2",
"react": "^16.13.1",
"react-dev-utils": "^10.2.1",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-dropzone": "^11.0.2",
"react-error-boundary": "^2.3.1",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-shepherd": "^3.3.0",
"reactrangeslider": "^3.0.6",
"shepherd.js": "^8.0.2",
"styled-jsx": "^3.3.0",
"uuid": "^8.3.1",
"video-react": "^0.14.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.9.1",
"@types/react-select": "^3.0.19",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"customize-cra": "^1.0.0",
"eledoc": "^0.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.0",
"js-yaml": "^3.14.0",
"prettier": "^2.1.2",
"prettier-config-standard": "^1.0.1",
"react-app-rewired": "^2.1.6",
"source-map-explorer": "^2.5.0",
"tailwindcss": "^2.0.1",
"typedoc": "^0.17.8",
"typedoc-plugin-pages": "^1.0.1",
"typescript": "^4.0.2",
"ytdl-core": "^3.1.2",
"ytsr": "^0.1.15"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js' --html ./analyze.html",
"build:tailwind": "tailwindcss build src/tailwind.css -o src/tailwind.output.css",
"prestart": "yarn build:tailwind",
"prebuild": "NODE_ENV=production yarn build:tailwind",
"generate": "mkdir src/dist; node workflow/workflow.js; node codecs/codecs.js; node formats/formats.js",
"start": "react-app-rewired start",
"react-build": "react-app-rewired build",
"build": "NODE_ENV=production yarn generate; yarn react-build ",
"test": "react-scripts test",
"test-codecs": "node --experimental-wasm-threads --experimental-wasm-bulk-memory ./node_modules/.bin/jest --runInBand --verbose --forceExit -i tests/codecs-testing",
"eject": "react-scripts eject",
"document": "yarn generate; typedoc --options typedoc.json src/ --theme pages-plugin",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"verify": "yarn prettier && yarn lint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn verify"
}
}
}