hinzugefügt scripts und dependencies in die package.json

This commit is contained in:
David Aster 2022-11-17 07:51:20 +01:00
parent cd17210f52
commit 2a4fa520b6
2 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View File

@ -2,6 +2,8 @@
# dependencies
/node_modules
.parcel-cache
dist
/.pnp
.pnp.js

View File

@ -2,15 +2,16 @@
"name": "npmusage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"start": "parcel index.html",
"build": "parcel build index.html"
},
"author": "",
"license": "ISC",
"dependencies": {
"leaflet": "^1.9.2",
"lodash-es": "^4.17.21"
"lodash-es": "^4.17.21",
"parcel": "^2.8.0"
},
"type": "module"
}