-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.43 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
111
112
113
{
"name": "netflix",
"version": "1.0.0",
"description": "Clone of netflix react web-app",
"main": "index.js",
"scripts": {
"dev": "webpack serve --open --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"server": "http-server dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"tsc:w": "tsc -w"
},
"author": "r1z3r",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-actions": "^6.3.2",
"@storybook/addon-essentials": "^6.3.2",
"@storybook/addon-links": "^6.3.2",
"@storybook/react": "^6.3.2",
"@types/node": "^16.3.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"autoprefixer": "^9.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"dotenv-webpack": "^6.0.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"history": "^4.10.1",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^27.0.6",
"metro": "^0.56.0",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"react": "^16.14.0",
"react-error-boundary": "^3.1.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.14.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"storybook": "^6.3.2",
"style-loader": "^3.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-react": "^7.14.5",
"async": "^2.6.3",
"autoprefixer": "^9.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"l": "^0.6.0",
"mini-css-extract-plugin": "^2.0.0",
"node-fetch": "^2.6.1",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.14.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"styled-components": "^5.3.0",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
},
"browserslist": [
"last 2 versions",
"> 1%"
]
}