-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 978 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 978 Bytes
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
{
"name": "@lumodine/api",
"version": "0.1.0",
"main": "src/index.js",
"private": true,
"scripts": {
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.971.0",
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@lumodine/aws": "file:src/packages/aws",
"@lumodine/bcrypt": "file:src/packages/bcrypt",
"@lumodine/crypto": "file:src/packages/crypto",
"@lumodine/email": "file:src/packages/email",
"@lumodine/mongodb": "file:src/packages/mongodb",
"@lumodine/qrcode": "file:src/packages/qrcode",
"ajv": "^8.17.1",
"bcrypt": "^6.0.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.3",
"fastify": "^5.7.1",
"fastify-plugin": "^5.1.0",
"mongoose": "^9.1.4",
"nodemailer": "^7.0.12",
"qrcode": "^1.5.4"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}