-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 878 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
{
"name": "weather-wise",
"version": "1.0.0",
"description": "My first weather app using Visual Crossing API",
"main": "index.js",
"homepage": "https://zalbright90.github.io/weather-wise",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open",
"build": "webpack --config webpack.config.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"keywords": ["weather, forecast, conditions, async/await, visual crossing API"],
"author": "Zachary Albright",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"gh-pages": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}