-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "a simple weather app made using vanilla JavaScript",
"main": "script.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --open",
"build": "node ./scripts/create-env.js && webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabcodingzest/Weather-App.git"
},
"author": "Fab",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabcodingzest/Weather-App/issues"
},
"homepage": "https://github.com/fabcodingzest/Weather-App#readme",
"dependencies": {
"dotenv-webpack": "^1.7.0",
"open-weather-icons": "0.0.8"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
}
}