-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
{
"name": "@fix-webm-duration/source",
"description": "navigator.mediaDevices.getUserMedia + MediaRecorder create WEBM files without duration metadata. This library appends missing metadata section right to the file blob.",
"private": true,
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/yusitnikov/fix-webm-duration.git"
},
"keywords": [],
"author": "Yuri Sitnikov <https://github.com/yusitnikov>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusitnikov/fix-webm-duration/issues"
},
"homepage": "https://github.com/yusitnikov/fix-webm-duration",
"scripts": {
"build": "nx run-many --target=build",
"build-demo": "nx build demo",
"lint": "nx run-many --target=lint",
"demo": "nx serve demo"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@nx/eslint": "19.4.0",
"@nx/eslint-plugin": "19.4.0",
"@nx/js": "19.4.0",
"@nx/react": "^19.4.0",
"@nx/rollup": "19.4.0",
"@nx/web": "19.4.0",
"@nx/webpack": "19.4.0",
"@nx/workspace": "19.4.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/node": "18.16.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"core-js": "^3.36.1",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "~22.1.0",
"nx": "19.4.0",
"prettier": "^3.3.2",
"react-refresh": "^0.10.0",
"rollup": "^4.14.0",
"tslib": "^2.3.0",
"typescript": "~5.4.2",
"verdaccio": "^5.0.4",
"webpack-cli": "^5.1.4"
},
"nx": {
"includedScripts": []
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
}