-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "weather-app",
"version": "1.0.0",
"description": "Stay informed about the weather whenever from wherever.",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "http-server public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ekaranjaa/weather-app.git"
},
"keywords": [
"weather-app",
"javascript",
"css",
"html",
"es6",
"babel"
],
"author": "Emmanuel Karanja",
"license": "ISC",
"bugs": {
"url": "https://github.com/ekaranjaa/weather-app/issues"
},
"homepage": "https://github.com/ekaranjaa/weather-app#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.10",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"sass": "^1.17.2",
"sass-loader": "^7.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"dotenv-webpack": "^2.0.0",
"http-server": "^0.12.3",
"regenerator-runtime": "^0.13.7"
}
}