mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +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.4",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"author": "Google Inc.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/app.js"
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/datastore": "^7.3.2",
|
|
"axios": "^1.3.4",
|
|
"client-oauth2": "^4.3.3",
|
|
"express": "^4.18.2",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^18.14.1",
|
|
"mocha": "^10.2.0",
|
|
"supertest": "^6.3.3",
|
|
"ts-node": "^10.9.1"
|
|
}
|
|
}
|