-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 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
{
"name": "nodejs-getting-started",
"description": "End to end sample for running Node.js applications on Google Cloud Platform",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=12"
},
"repository": "https://github.com/GoogleCloudPlatform/nodejs-getting-started",
"main": "app.js",
"private": true,
"scripts": {
"start": "node server/app.js",
"test": "mocha --exit test/app.test.js --timeout=50000"
},
"dependencies": {
"@google-cloud/firestore": "^6.2.0",
"@google-cloud/pubsub": "3.1.0",
"@google-cloud/storage": "^6.0.0",
"express": "^4.16.4"
},
"devDependencies": {
"body-parser": "^1.18.3",
"child_process": "^1.0.2",
"@google-cloud/functions": "^3.0.0",
"mocha": "^9.0.0",
"node-fetch": "^2.6.0",
"uuid": "^9.0.0",
"wait-on": "^7.0.0"
}
}