forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 949 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 949 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
32
33
34
35
36
37
38
{
"name": "appengine-typescript",
"description": "An example TypeScript app running on Google App Engine.",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "16.x.x"
},
"scripts": {
"prepare": "npm run gcp-build",
"pretest": "npm run gcp-build",
"test": "c8 mocha -p -j 2 test/*.test.js --exit",
"lint": "gts lint",
"start": "node ./index.js",
"deploy": "gcloud app deploy",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"build": "tsc -p .",
"gcp-build": "tsc -p ."
},
"dependencies": {
"@typescript-eslint/parser": "^6.0.0",
"express": "^4.16.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.13.0",
"c8": "^8.0.0",
"chai": "^4.3.7",
"gts": "^5.0.0",
"mocha": "^10.2.0",
"typescript": "^5.0.0",
"wait-port": "^1.0.0"
}
}