-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 957 Bytes
/
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
{
"name": "weather-app",
"version": "1.0.0",
"description": "A weather app using API (from https://www.weatherapi.com/ ) that users can search city names, change temperature to metric or imperial.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Borakarayel/weather-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Borakarayel/weather-app/issues"
},
"homepage": "https://github.com/Borakarayel/weather-app#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.2",
"webpack": "^5.77.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
}
}