-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "react-hook-recorder",
"version": "0.0.9",
"description": "React based hook to use native MediaRecorder API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./storybook",
"prepublish": "rimraf ./dist && tsc"
},
"keywords": [
"react",
"hooks",
"recorder",
"media",
"webcam",
"video",
"audio"
],
"author": "HaFLiNGeR <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.15",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"rimraf": "^3.0.2",
"storybook": "^6.3.4",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/haflinger/react-hook-recorder"
},
"dependencies": {
"@types/dom-mediacapture-record": "^1.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}