add package.json

This commit is contained in:
cv
2021-06-01 22:08:05 +02:00
parent f13ccb4c0b
commit 9e15ab6ea7
3 changed files with 11 additions and 1 deletions
-1
View File
@@ -31,7 +31,6 @@ _SS/
db.json
.eslintrc.json
yarn.lock
package.json
package-lock.json
db.json
db backup.json
+4
View File
@@ -0,0 +1,4 @@
{
"dependencies": {},
"devDependencies": {}
}
+7
View File
@@ -0,0 +1,7 @@
{
"type": "module",
"scripts": {
"nodestart": "nodemon app.js",
"start": "node app.js"
}
}