-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "javascript-weather-app",
"version": "1.0.0",
"description": "## by [Ryan](https://github.com/rvvergara) and [Dipto](https://github.com/dipto0321)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"dev": "webpack --watch --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvvergara/javascript-weather-app.git"
},
"author": "Ryan and Dipto",
"license": "ISC",
"bugs": {
"url": "https://github.com/rvvergara/javascript-weather-app/issues"
},
"homepage": "https://github.com/rvvergara/javascript-weather-app#readme",
"devDependencies": {
"css-loader": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"pug-html-loader": "^1.1.5",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"bootstrap": "^4.3.1",
"date-fns": "^1.30.1",
"jquery": "^3.5.0",
"popper.js": "^1.14.7"
}
}