generated from top-submissions/template-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 KB
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
{
"name": "weather-app",
"version": "1.0.0",
"description": "A weather forecast application built with vanilla JavaScript that displays real-time weather data with Fahrenheit/Celsius conversion and dynamic theming",
"main": "src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "webpack --config config/webpack.prod.js",
"build:dev": "webpack --config config/webpack.dev.js",
"dev": "webpack serve --config config/webpack.dev.js",
"watch": "webpack --watch --config config/webpack.dev.js",
"deploy": "npm run build && git checkout -B gh-pages && git merge main --no-edit && git add dist -f && git commit -m \"build: deployment commit\" && git subtree push --prefix dist origin gh-pages && git checkout main",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier --write \"src/**/*.{js,css,html}\"",
"format:check": "prettier --check \"src/**/*.{js,css,html}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/top-submissions/weather-app.git"
},
"keywords": [
"weather-app",
"javascript",
"webpack",
"the-odin-project",
"api",
"visual-crossing",
"async-await",
"promises",
"fetch-api",
"dom-manipulation",
"es6-modules",
"responsive-design",
"web-development",
"frontend",
"css3",
"html5",
"weather-forecast",
"temperature-converter",
"loading-indicator",
"error-handling"
],
"author": "top-submissions",
"license": "MIT",
"bugs": {
"url": "https://github.com/top-submissions/weather-app/issues"
},
"homepage": "https://github.com/top-submissions/weather-app#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.5",
"prettier": "^3.7.4",
"style-loader": "^4.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}