-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "webpack --mode=development -d inline-source-map && cp src/index.html dist/index.html",
"watch": "webpack --mode=development --watch -d inline-source-map",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartivs/weather-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bartivs/weather-app/issues"
},
"homepage": "https://github.com/bartivs/weather-app#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"dotenv": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.1",
"style-loader": "^3.2.1",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"leaflet": "^1.7.1"
}
}