-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "netflix-clone",
"version": "1.0.0",
"description": "A front end clone of Netflix built with React and the MovieDB API.",
"main": "index.tsx",
"repository": "github.com/uujx/netflix-clone",
"author": "uujx",
"license": "MIT",
"private": false,
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"start": "webpack-dev-server --config webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.158",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux": "^3.6.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.0",
"dotenv": "^8.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"react-refresh": "^0.8.3",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"svg-react-loader": "^0.4.6",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"typescript-plugin-css-modules": "^2.4.0",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "0.18.1",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.4.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"swiper": "^6.1.1"
}
}