diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..b84b9a4 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "auth", + "version": "1.0.0", + "description": "Simple authentication service", + "main": "index.js", + "scripts": { + "start": "node index.js" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "bcryptjs": "^2.4.3", + "dotenv-safe": "^8.2.0", + "express": "^4.17.3", + "jsonwebtoken": "^9.0.1", + "mongoose": "^6.3.1" + } +} |