-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·89 lines (89 loc) · 2.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-hello-webapp",
"engines": {
"node": "20.x"
},
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --port 3000",
"build": "webpack --config webpack.prod.js"
},
"author": {
"name": "Alejandro Sanchez",
"url": "http://alesanchezr.com/"
},
"contributors": [
{
"name": "Alejandro Sanchez",
"url": "http://alesanchezr.com/"
},
{
"name": "Ignacio Cordoba",
"url": "http://github.com/nachovz"
}
],
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@types/react": "^18.3.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.10.2",
"bc-console": "0.0.2",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"envfile": "^6.17.0",
"error-overlay-webpack-plugin": "^1.0.0",
"eslint": "^8.4.0",
"eslint-plugin-react": "^7.27.1",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"parse-github-url": "^1.0.2",
"prettier": "^2.5.1",
"remote-origin-url": "^2.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"dependencies": {
"@cloudinary/react": "^1.13.0",
"@cloudinary/url-gen": "^1.21.0",
"@googlemaps/js-api-loader": "^1.16.8",
"@googlemaps/markerclusterer": "^2.5.3",
"@vis.gl/react-google-maps": "^1.3.0",
"mapbox-gl": "^3.7.0",
"prop-types": "^15.6.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-polyfills": "0.0.1",
"react-router-dom": "^6.3.0"
}
}