-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 960 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 960 Bytes
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
{
"name": "weather-app",
"version": "1.0.0",
"description": "This is a weather app connecting to OpenWeatherMap API.",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"start": "webpack-dev-server",
"server": "node server.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthony-roncal/weather-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/anthony-roncal/weather-app/issues"
},
"homepage": "https://github.com/anthony-roncal/weather-app",
"devDependencies": {
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.12.0"
}
}