-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "report-api",
"version": "1.0.0",
"description": "API for HTTP Archive reports",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "DATABASE=tech-report-api-prod functions-framework --target=app",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:live": "bash ../test-api.sh",
"build": "docker build -t report-api .",
"run": "docker run -p 8080:8080 report-api"
},
"dependencies": {
"@google-cloud/bigquery": "^7.9.1",
"@google-cloud/firestore": "8.3.0",
"@google-cloud/functions-framework": "^5.0.2",
"@google-cloud/storage": "7.19.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@jest/transform": "^30.3.0",
"jest": "30.3.0",
"supertest": "7.2.2"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!index.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov"
],
"testMatch": [
"**/__tests__/**/*.js",
"**/?(*.)+(spec|test).js"
],
"globals": {
"__filename": false,
"__dirname": false
},
"transformIgnorePatterns": [
"node_modules/(?!(.*\\.mjs$))"
],
"transform": {}
}
}