-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 970 Bytes
/
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
{
"name": "google-map-radius",
"version": "1.0.0",
"description": "Simple tool for determining a radius from your home",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "webpack-dev-server --mode=development --config webpack.config.js",
"watch": "webpack --watch",
"build": "webpack --mode=production --config webpack.config.js"
},
"author": "Bron Thulke",
"license": "MIT",
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.4.0",
"bootstrap": "^3.4.1",
"copy-webpack-plugin": "^6.0.3",
"jquery": "^3.5.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^1.2.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}