-
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) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "user-service",
"version": "1.0.6",
"description": "Shared storage project",
"main": "app.js",
"scripts": {
"start": "eval $(cat .env.local.staging) node server",
"dev": "eval $(cat .env.local.dev) nodemon server",
"serverless-deploy-production": "eval $(cat .env.deploy.production) serverless deploy",
"serverless-deploy-staging": "eval $(cat .env.deploy.staging) serverless deploy",
"start-docker": "node server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rishab Bahal",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"aws-sdk": "^2.1395.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"i18n": "^0.15.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^7.2.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"serverless-http": "^3.2.0",
"stripe": "^12.12.0",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}