forked from Lucasmg37/react-netflix-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "react-netflix-player",
"version": "1.1.7",
"description": "React Video Player Based in Netflix Design",
"main": "./dist/ReactNetflixPlayer.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Lucasmg37/react-netflix-player.git"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"tabWidth": 2,
"useTabs": false,
"printWidth": 120
},
"author": "Lucas Junior Dias",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "^16 || ^17",
"react-dom": "^16 || ^17"
},
"dependencies": {
"i18next": "^19.7.0",
"react-i18next": "^11.7.1",
"react-icons": "^3.9.0",
"styled-components": "^5.1.1",
"react": "^17",
"react-dom": "^17"
}
}