-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 922 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 922 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
{
"name": "storage_service",
"version": "1.0.0",
"description": "Storage service.",
"main": "app.js",
"scripts": {
"start": "eval $(cat .env.local.staging) node server",
"dev": "eval $(cat .env.local.dev) nodemon server",
"test": "echo \"Error: no test specified\" && exit 1",
"start-docker": "node server",
"serverless-deploy-production": "eval $(cat .env.deploy.production) serverless deploy",
"serverless-deploy-staging": "eval $(cat .env.deploy.staging) serverless deploy"
},
"keywords": [
"Storage",
"service"
],
"author": "Rishab Bahal",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1555.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}