-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "weather-app",
"version": "0.0.0",
"description": "A weather app.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install",
"dev": "webpack serve --open --config webpack.config.dev.js",
"prod": "webpack serve --open --config webpack.config.prod.js",
"build:prod": "webpack --config webpack.config.prod.js",
"build:dev": "webpack --config webpack.config.dev.js",
"deploy:gh-pages": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ahmeducf/weather-app.git"
},
"author": "Ahmed Salah",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahmeducf/weather-app/issues"
},
"homepage": "https://github.com/ahmeducf/weather-app#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "^2.27.5",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"image-minimizer-webpack-plugin": "^3.8.3",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.0.0",
"style-loader": "^3.3.3",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"lint-staged": {
"*.js": [
"npx eslint",
"npx prettier --write"
],
"*.{html,css,md}": "prettier --write"
},
"dependencies": {
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0"
}
}