-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "av-devices-setup",
"version": "1.0.0",
"description": "React component to select & test audio / video devices through the browser API",
"main": "src/index.js",
"module": "esm/index.js",
"scripts": {
"build": "babel src/ --out-dir esm/ --ignore **/__tests__,**/__mocks__ --copy-files",
"postinstall": "yarn run build && rm -rf node_modules",
"standalone": "webpack serve",
"lint": "",
"test": ""
},
"repository": {
"type": "git",
"url": "https://github.com/lowlandjuju/av-devices-setup"
},
"files": [
"esm",
"src"
],
"keywords": [
"react",
"audio",
"video",
"microphone",
"camera",
"react-component"
],
"browserslist": [
"last 1 Chrome version"
],
"author": "lowlandjuju",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"classnames": "^2.3.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-use-cookie": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^5.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"react-dom": "^17.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}