-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1017 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
{
"name": "google-storage-export",
"version": "1.0.0",
"description": "Example of how to export a big amount of data from Google Storage.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:local": "source .env-local && nodemon server.js --trace-warnings",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipeneuhauss/google-storage-export.git"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/felipeneuhauss/google-storage-export/issues"
},
"homepage": "https://github.com/felipeneuhauss/google-storage-export#readme",
"dependencies": {
"@google-cloud/storage": "^5.7.4",
"archiver": "^5.2.0",
"bluebird": "^3.7.2",
"express": "^4.17.1",
"sequelize": "^6.5.0",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"chalk": "^4.1.0",
"nodemon": "^2.0.7"
}
}