-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
110 lines (110 loc) · 3.27 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
103
104
105
106
107
108
109
110
{
"name": "react-video-recorder",
"main": "lib",
"files": [
"lib",
"README.md"
],
"scripts": {
"test": "yarn test:unit && yarn jest:browser",
"test:unit": "jest -c test/unit/jest.config.js",
"jest:browser": "jest -c test/browser/jest.config.js",
"test:browser": "start-server-and-test storybook http-get://localhost:6006 jest:browser",
"lint": "eslint .",
"clean": "rimraf -rf lib",
"build": "babel src -d lib --copy-files --ignore **/*.stories.js,**/*.test.js,**/*.browser-test.js",
"build:watch": "babel --watch src -d lib --copy-files --ignore **/*.stories.js,**/*.test.js,**/*.browser-test.js",
"prebuild": "yarn run clean",
"prepublish": "cross-env NODE_ENV=production yarn run build",
"start": "yarn run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix"
],
"**/*.md": [
"prettier --write"
],
"**/*.yml": [
"prettier --write"
]
},
"release": {
"branches": [
"main"
]
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.3 || ^17.0.0",
"react-dom": "^16.8.3 || ^17.0.0",
"styled-components": "^4.1.1"
},
"dependencies": {
"fix-webm-duration": "^1.0.4",
"lodash.merge": "^4.5.0",
"react-svg-inline": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.0.21",
"@storybook/addon-options": "^5.3.21",
"@storybook/addons": "^6.0.21",
"@storybook/react": "^6.0.21",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^7.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"puppeteer": "^1.18.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.3",
"start-server-and-test": "^1.7.11",
"styled-components": "4"
},
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/fbaiodias/react-video-recorder.git"
},
"license": "MIT"
}