-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"homepage": "https://edxmo.github.io/react-weather-app",
"name": "react-weather-app",
"version": "1.0.0",
"description": "Weather App build with ReactJS",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "npm run test",
"format": "prettier --write \"src/**/*.js\"",
"deploy": "gh-pages -d build"
},
"author": "Eduardo Romero Madrona <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@svgr/webpack": "^5.5.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.0",
"css-minimizer-webpack-plugin": "^1.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"swiper": "^6.4.15",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-manifest-plugin": "^3.0.0",
"workbox-webpack-plugin": "^6.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.22.0",
"prettier": "^2.2.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}