-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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": "Weather forecast app using data from WeatherAPI.",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix --max-warnings=0",
"format": "prettier . --write",
"watch": "webpack --watch",
"build": "NODE_ENV=production webpack",
"dev": "webpack serve"
},
"keywords": [
"weather app",
"forecast app",
"Weather Wise"
],
"author": "Scott Wright",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scottwright-dev/weather-app"
},
"bugs": {
"url": "https://github.com/scottwright-dev/weather-app/issues"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"date-fns": "^2.30.0"
}
}