-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
39
40
41
42
43
44
45
{
"name": "blumea-serverless",
"version": "1.0.0",
"description": "Serverless node app that provides standard utilities to power the Blumea client.",
"main": "index.js",
"scripts": {
"test": "echo \"[*]Blumea: No Tests Specified\" && exit 1",
"start": "npm install --save && node index.js",
"dev": "npm install --save && nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blumea/Blumea-Backend.git"
},
"keywords": [
"Blumea",
"Node.js",
"Bloom Filters"
],
"author": {
"name": "Akash Chouhan",
"email": "[email protected]",
"github": "github.com/akashchouhan16"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Blumea/Blumea-Backend/issues"
},
"homepage": "https://github.com/Blumea/Blumea-Backend#readme",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"blumea": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"email-validator": "^2.0.4",
"express": "^4.17.3",
"express-rate-limit": "^6.7.0",
"express-slow-down": "^1.5.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"uuid": "^9.0.0"
}
}