-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.26 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
70
71
72
73
{
"name": "bruga-weather",
"version": "1.8.0",
"description": "Simple weather app made with <3 by Andrés Brugarolas",
"main": "webpack.config.js",
"scripts": {
"start": "webpack serve --mode development --hot",
"start:local": "webpack serve --mode development --hot --env NODE_ENV=local",
"start:static": "npm run build && npm run utils:static-server",
"build": "webpack --mode production --progress",
"build:gh-pages": "webpack --mode production --progress --env PUBLIC_PATH=bruga-weather",
"build:analyzer": "webpack --mode production --progress --analyze",
"icons:add": "node scripts/download-icon",
"icons:update-included": "node scripts/download-included-icons",
"utils:static-server": "http-server ./dist --cors",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u"
},
"keywords": [
"react",
"weather"
],
"author": "andres-brugarolas",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.21.5",
"@brugarolas/swing": "^3.3.0",
"clsx": "^1.2.1",
"core-js": "^3.30.2",
"immer": "^9.0.21",
"puppeteer": "^20.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-move": "^3.0.5",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"reselect": "^4.1.8",
"sister": "^3.0.2",
"unfetch": "^4.2.0",
"yaku": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@supercharge/promise-pool": "^2.4.0",
"babel-loader": "^9.1.2",
"babel-preset-minify": "0.5.2",
"chalk": "^5.2.0",
"css-loader": "^6.7.3",
"favicons-webpack-plugin": "^6.0.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"http-server": "^14.1.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"npm-check-updates": "^16.10.12",
"svgo": "^3.0.2",
"webfonts-loader": "^8.0.1",
"webpack": "^5.82.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"resolutions": {
"semver": "^7.3.2"
}
}