-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 2.88 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
{
"name": "reco",
"version": "1.0.0",
"description": "In Browser Recording Studio",
"main": "src/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack-cli --mode=production --env=prod",
"start": "webpack-dev-server --mode=development --env=dev",
"test": "jest",
"serve:prod": "servor dist"
},
"dependencies": {
"@agney/react-dark-mode-toggle": "0.0.4-4",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"enumerate-devices": "^1.1.1",
"ffmpeg.js": "^4.2.9003",
"file-saver": "^2.0.2",
"framer-motion": "^2.0.0-beta.66",
"get-blob-duration": "^1.1.0",
"htm": "^3.0.4",
"preact": "^10.4.1",
"preact-compat": "^3.19.0",
"rc-slider": "^9.2.4",
"react-toast-notifications": "^2.4.0",
"tailwindcss": "^1.4.0",
"use-dark-mode": "^2.3.1",
"video-stream-merger": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-react-display-name": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/preact": "^1.0.2",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.0",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^25.5.2",
"lint-staged": "^10.2.0",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"postcss-cli": "^7.1.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"pwa-asset-generator": "^3.0.0",
"servor": "^3.3.1",
"style-loader": "^1.2.1",
"tailwindcss-dark-mode": "^1.1.4",
"url-loader": "^4.1.0",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.2.2",
"webpack-monitor": "^1.0.14",
"workbox-webpack-plugin": "^7.1.0",
"worker-loader": "^2.0.0"
},
"keywords": [
"recording",
"webrtc"
],
"author": "Agney Menon <agney@outlook.in>",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --cache --fix",
"prettier --write"
],
"*.(html|md)": [
"prettier --write"
]
},
"browserslist": [
"> 0.5%, not dead"
]
}