-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.29 KB
/
package.json
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
39
40
41
42
43
{
"version": "0.1.0",
"description": "",
"main": "build/src/index.js",
"scripts": {
"start": "npx --source=build/src functions-framework --target=main --signature-type=http",
"watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"compile": "tsc",
"gcp-build": "npm i npm-install-peers",
"//prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [],
"author": "Google Inc. (gTech gPS CSE team)",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@google-cloud/logging": "^11.0.0",
"@google-cloud/logging-winston": "^6.0.0",
"google-ads-api-report-fetcher": "^2.12.0",
"google-auth-library": "^9.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/async": "^3.2.21",
"@types/express": "^4.17.18",
"@types/js-yaml": "^4.0.6",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.2",
"@types/nunjucks": "^3.2.4",
"concurrently": "^8.2.1",
"gts": "^4.0.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}