-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "analytics-api",
"version": "1.0.0",
"description": "API for getting data from big-query",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev ./index.ts",
"start": "node ./dist/index.js",
"dev-job": "ts-node-dev ./jobs/index.ts",
"job": "node ./dist/jobs/index.js",
"dev-consumer": "ts-node-dev ./consumers/index.ts",
"consumer": "node ./dist/consumers/index.js",
"script": "node ./dist/script.js",
"build": "tsc"
},
"keywords": [
"big-query",
"analytics"
],
"author": "Ankit Kumar",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.45",
"@types/node-cron": "^3.0.4",
"@types/response-time": "^2.3.5",
"@types/uuid": "^9.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@google-cloud/bigquery": "^6.0.0",
"@google-cloud/bigquery-storage": "^3.2.0",
"@google-cloud/storage": "^6.9.1",
"@types/chart.js": "^2.9.37",
"amqplib": "^0.10.0",
"axios": "^0.27.2",
"canvas": "^2.11.0",
"chart.js": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase-admin": "^11.0.0",
"google-libphonenumber": "^3.2.30",
"helmet": "^5.1.0",
"jshashes": "^1.0.8",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"minimist": "^1.2.6",
"mongodb": "^4.7.0",
"node-cron": "^3.0.2",
"node-ts-cache": "^4.4.0",
"node-ts-cache-storage-memory": "^4.4.0",
"pdfkit": "^0.13.0",
"protobufjs": "^7.1.2",
"response-time": "^2.3.2",
"sequelize": "^6.21.3",
"sqlite3": "^5.0.9",
"uuid": "^9.0.0",
"winston": "^3.7.2",
"zip-bucket": "^1.8.2",
"zod": "^3.19.1"
}
}