-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 995 Bytes
/
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
{
"name": "fileuploader",
"version": "1.0.0",
"description": "Upload and download files to|from the google cloud storage",
"main": "node src/app.js",
"keywords": [
"gc",
"storage"
],
"author": "Jose Mojena",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"@types/express": "^4.17.8",
"@types/multer": "^1.4.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"swagger-ui-express": "^4.1.4"
},
"scripts": {
"lint": "eslint . --fix",
"serve": "node src/app.js",
"start": "npm run serve",
"dev": "./node_modules/.bin/nodemon src/app.js"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-checkly": "0.0.5",
"eslint-plugin-mocha": "^4.12.1",
"jest": "^26.4.2",
"js-comments": "^0.5.4",
"lodash": "^4.17.20",
"nodemon": "^2.0.5"
}
}