-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.14 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.14 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@common/functions",
"main": "dist/index.js",
"private": true,
"version": "2.0.0",
"description": "Cloud Functions for Common",
"author": "The Common Team",
"engines": {
"node": "18"
},
"scripts": {
"dev": "tsc; NODE_ENV=local-dev FIRESTORE_EMULATOR_HOST=127.0.0.1:8080 firebase emulators:start",
"dev:inspect": "npm run dev -- --inspect-functions",
"dev:data": "npm run dev -- --import=./firebaseExport --export-on-exit=./firebaseExport",
"dev:coverage": "V8_COVERAGE=true npm run dev",
"build:watch": "tsc -w",
"build": "tsc -p tsconfig.prod.json",
"deploy:dev": "cd ../env && ./env.sh -dev -deploy",
"deploy:staging": "cd ../env && ./env.sh -stg -deploy",
"deploy:production": "cd ../env && ./env.sh -prod -deploy",
"use:dev": "cd ../env && ./env.sh -dev",
"use:staging": "cd ../env && ./env.sh -stg",
"use:production": "cd ../env && ./env.sh -prod",
"prepare:hooks": "cd .. ; husky install",
"test-unit": "NODE_ENV=test mocha \"src/__tests__/**/*.spec.ts\"",
"test-e2e": "NODE_ENV=local-dev FIRESTORE_EMULATOR_HOST=127.0.0.1:8080 vitest",
"coverage": "V8_COVERAGE=true npm run test-e2e -- run --coverage",
"lint": "eslint .",
"import:firestore": "fire-import firestore",
"import:auth": "firebase auth:export ./firebaseExport/auth_export/accounts.json"
},
"lint-staged": {
"src/**/*": [
"prettier --write",
"eslint --cache --max-warnings=0"
]
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@google-cloud/firestore": "^6.6.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "^2.1.0",
"@google-cloud/opentelemetry-cloud-trace-propagator": "^0.17.0",
"@google-cloud/secret-manager": "^5.0.1",
"@notionhq/client": "^2.2.13",
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/instrumentation-express": "^0.33.2",
"@opentelemetry/instrumentation-grpc": "^0.44.0",
"@opentelemetry/instrumentation-http": "^0.44.0",
"@opentelemetry/resource-detector-gcp": "^0.29.2",
"@opentelemetry/sdk-node": "^0.44.0",
"@sendgrid/mail": "^7.7.0",
"@taskforcesh/bullmq-pro": "^6.11.0",
"@taskforcesh/connector-pro": "^1.0.1",
"async-retry": "^1.3.3",
"axios": "^1.12.0",
"caught-object-report-json": "^7.1.7",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.17.1",
"express-pino-logger": "^7.0.0",
"firebase": "^10.5.0",
"firebase-admin": "^11.11.0",
"firebase-functions": "^4.4.1",
"fuse.js": "^7.0.0",
"get-urls": "10.0.1",
"google-auth-library": "^9.0.0",
"google-libphonenumber": "^3.2.33",
"json2csv": "^5.0.7",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"open-graph-scraper": "^6.5.1",
"openai": "^4.33.0",
"p-limit": "3.1.0",
"pino": "^8.14.1",
"pino-pretty": "^10.2.0",
"redlock": "^5.0.0-beta.2",
"serializerr": "^1.0.3",
"tsx": "^4.7.2",
"type-fest": "^3.12.0",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/express-pino-logger": "^4.0.3",
"@types/flat": "^5.0.2",
"@types/google-libphonenumber": "^7.4.26",
"@types/json2csv": "^5.0.3",
"@types/lodash": "^4.14.197",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"@types/sinon": "^10.0.15",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-c8": "^0.31.1",
"chai": "^4.3.7",
"concurrently": "^8.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "5.0.0",
"fire-import": "^1.1.11",
"firebase-functions-test": "^3.1.0",
"fishery": "^2.2.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"vitest": "^0.31.4"
}
}