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
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 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
{
"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": ">=8.0.0"
},
"scripts": {
"prepare": "npm run gcp-build",
"pretest": "npm run gcp-build",
"test": "mocha test/*.test.js --exit",
"posttest": "npm run lint",
"lint": "tslint -p .",
"start": "node ./index.js",
"gcp-build": "tsc -p .",
"deploy": "gcloud app deploy"
},
"dependencies": {
"express": "^4.16.3",
"typescript": "^3.0.1"
},
"devDependencies": {
"mocha": "^7.0.0",
"wait-port": "^0.2.7",
"@types/express": "^4.16.0",
"chai": "^4.2.0",
"tslint": "^6.0.0",
"typescript": "^3.8.3"
}
}