-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "Create an app to check the weather for different cities",
"private": true,
"dependencies": {
"dayjs": "^1.8.18",
"dotenv-webpack": "^1.7.0",
"google-maps": "^3.3.0"
},
"devDependencies": {
"css-loader": "^3.4.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"file-loader": "^5.0.2",
"style-loader": "^1.1.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"server": "webpack-dev-server --open-page 'dist/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efrapp/weather-app.git"
},
"author": "Efrain Pinto",
"license": "ISC",
"bugs": {
"url": "https://github.com/efrapp/weather-app/issues"
},
"homepage": "https://github.com/efrapp/weather-app#readme"
}