-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 KB
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
{
"name": "quickstep-backend",
"description": "Real-time live location tracking in Flutter - Backend server",
"version": "1.0.0",
"author": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aimelive/quickstep-backend.git"
},
"scripts": {
"start": "npm run build && node ./build/index.js",
"build": "tsc -p .",
"dev": "nodemon ./src/index.ts"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aimelive/quickstep-backend/issues"
},
"homepage": "https://github.com/aimelive/quickstep-backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.282.0",
"@aws-sdk/s3-request-presigner": "^3.282.0",
"@types/express": "^4.17.17",
"@types/node": "^18.14.5",
"agenda": "^5.0.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"mailgen": "^2.0.27",
"mongoose": "^7.0.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"otp-generator": "^4.0.1",
"socket.io": "^4.6.1",
"swagger-ui-express": "^4.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.7",
"@types/otp-generator": "^4.0.0",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.21"
}
}