-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "av-devices-setup",
"version": "1.0.0",
"description": "React component to select & test audio / video devices through the browser API",
"module": "esm/index.js",
"scripts": {
"build": "NODE_ENV=production babel src/ --out-dir esm/ --ignore **/__tests__,**/__mocks__ --copy-files",
"clean": "rimraf esm",
"prepublishOnly": "yarn run clean && yarn run build",
"standalone": "webpack-dev-server --hot"
},
"repository": {
"type": "git",
"url": "https://github.com/lowlandjuju/av-devices-setup"
},
"files": [
"esm",
"src"
],
"keywords": [
"react",
"audio",
"video",
"microphone",
"camera",
"react-component"
],
"author": "lowlandjuju",
"license": "MIT",
"browserslist": [
"since 2017-06"
],
"dependencies": {
"@material-ui/core": "^4.11.3",
"classnames": "^2.3.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-device-detect": "^1.17.0",
"react-dom": "^16.13.1",
"react-use-cookie": "^1.2.1",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^5.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.4.1",
"react-refresh": "^0.10.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}