-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 999 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 999 Bytes
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": "cc3_weatherapp",
"version": "1.0.0",
"description": "Weather app",
"main": "main.js",
"scripts": {
"dev": "webpack --mode=development",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanoDW/CC3_WeatherAPP.git"
},
"keywords": [
"weather",
"forecast",
"app"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nanoDW/CC3_WeatherAPP/issues"
},
"homepage": "https://github.com/nanoDW/CC3_WeatherAPP#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"moment": "^2.24.0",
"moment-timezone": "^0.5.23"
}
}