-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
46
47
48
49
50
51
52
53
{
"name": "beacon-backend",
"version": "1.0.0",
"description": "",
"main": "serverless/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -r dotenv/config index.mjs",
"start_aws": "node -r dotenv/config serverless/index.js",
"start": "node -r dotenv/config index.mjs",
"format": "npx prettier -w \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CCExtractor/beacon-backend.git"
},
"author": "Aadi Bajpai",
"license": "MIT",
"bugs": {
"url": "https://github.com/CCExtractor/beacon-backend/issues"
},
"homepage": "https://github.com/CCExtractor/beacon-backend#readme",
"dependencies": {
"@aws-sdk/client-ec2": "^3.27.0",
"apollo-server-express": "^2.7.0",
"apollo-server-lambda": "^3.1.2",
"aws-sdk": "^2.971.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express-jwt": "^6.0.0",
"geolib": "^3.3.3",
"graphql": "^15.3.0",
"graphql-redis-subscriptions": "^2.4.2",
"graphql-shield": "^7.5.0",
"ioredis": "^4.27.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^8.2.1",
"nanoid": "^3.3.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
"pm2": "^5.2.0",
"socket.io": "^4.7.5",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"prettier": "^2.8.8",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-offline": "^8.0.0",
"typescript": "^5.3.3"
}
}