-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.37 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": "l-video-editor",
"version": "0.0.1",
"description": "In-browser video editor",
"main": "src/main.tsx",
"scripts": {
"dev": "cross-env NODE_ENV=development NODE_OPTIONS=--max-old-space-size=4096 webpack serve -c ./webpack.dev.js",
"prod": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 webpack -c ./webpack.prod.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mix0000/l-video-editor.git"
},
"author": "Lookarious",
"license": "ISC",
"bugs": {
"url": "https://github.com/mix0000/l-video-editor/issues"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"browserslist": [
"> 1%",
"last 2 version"
],
"homepage": "https://github.com/mix0000/l-video-editor#readme",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@types/bytebuffer": "^5.0.43",
"@types/hookrouter": "^2.2.5",
"@types/lodash.debounce": "^4.0.6",
"@wasm-codecs/gifsicle": "^1.0.0",
"antd": "^4.18.4",
"bytebuffer": "^5.0.1",
"clsx": "^1.1.1",
"hookrouter": "^1.2.3",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"mediainfo.js": "^0.1.7",
"mobx": "^6.3.12",
"mobx-react-lite": "^3.2.3",
"path-browserify": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-player": "^2.9.0",
"simplebar-react": "^2.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@types/path-browserify": "^1.0.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/w3c-css-typed-object-model-level-1": "^20180410.0.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"cssnano": "^5.0.15",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^6.1.7",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.5.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"thread-loader": "^3.0.4",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
}
}