mirror of
https://github.com/koush/scrypted.git
synced 2026-02-09 00:39:56 +00:00
34 lines
806 B
JSON
34 lines
806 B
JSON
{
|
|
"name": "appengine-hello-world",
|
|
"description": "Simple Hello World Node.js sample for Google App Engine Standard Environment.",
|
|
"version": "0.0.3",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"author": "Google Inc.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/app.js"
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/datastore": "^6.5.0",
|
|
"axios": "^0.21.1",
|
|
"client-oauth2": "^4.3.3",
|
|
"express": "^4.17.1",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^16.7.10",
|
|
"mocha": "^9.0.0",
|
|
"supertest": "^6.0.0",
|
|
"ts-node": "^10.2.1"
|
|
}
|
|
}
|