-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.27 KB
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
{
"name": "weatherApp",
"version": "1.0.0",
"description": "This is a weather forecast site using the weather API. Users are able to search for a specific location and toggle displaying the data in Fahrenheit or Celsius.",
"private": "true",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack --mode production",
"dev": "npx webpack --mode development",
"watch": "npx webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oloomoses/weatherApp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oloomoses/weatherApp/issues"
},
"homepage": "https://github.com/oloomoses/weatherApp#readme",
"devDependencies": {
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"style-loader": "^2.0.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"bootstrap": "^4.5.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"postcss": "^8.2.1"
}
}