-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.66 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "The Weather App project brings together the concepts of Promises, Callbacks, APIs, Object Oriented Programming, Factory Functions, Module Pattern, Single Responsibility and Tightly Coupled Objects. This is made simple but lay down a solid structure for a more complex web app. It is part of [microverse](https://www.microverse.org/) curriculum.",
"scripts": {
"build": "webpack",
"deploy": "gh-pages -d dist",
"start": "webpack-dev-server --open",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabienNeibaf/Weather-App.git"
},
"keywords": [],
"author": "Fabien RAKOTOMAMPIANDRA",
"license": "ISC",
"bugs": {
"url": "https://github.com/FabienNeibaf/Weather-App/issues"
},
"homepage": "https://github.com/FabienNeibaf/Weather-App#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^4.2.0",
"gh-pages": "^2.1.1",
"node-sass": "^4.13.1",
"prettier": "^1.18.2",
"resolve-url-loader": "^3.1.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"core-js": "^3.3.1",
"regenerator-runtime": "^0.13.3"
}
}