Add package.json from getting-started app

This commit is contained in:
Eryn Wells 2022-11-12 10:14:25 -08:00
parent b21b51c50a
commit 969cd0beb6

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "thirteenth-friend",
"version": "0.0.1",
"description": "",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"author": "Eryn Wells",
"license": "MIT",
"dependencies": {
"discord-interactions": "^3.2.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"node-fetch": "^3.2.3"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}