-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
53 lines (52 loc) · 1.83 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
{
"name": "@apps/api",
"version": "1.0.0",
"author": "",
"license": "MIT",
"description": "",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prebuild": "biome lint",
"build": "tsc --build",
"test:coverage:node": "vitest run --coverage",
"watch": "tsc -w",
"test:watch": "vitest",
"lint": "biome lint",
"clean": "rimraf dist",
"prestart": "pnpm run clean && pnpm run build",
"start": "func start --typescript",
"predev": "pnpm run clean && pnpm run build",
"dev": "portless data-access.sharethrift.localhost node start-dev.mjs",
"azurite": "azurite-blob --silent --location ../../__blobstorage__ & azurite-queue --silent --location ../../__queuestorage__ & azurite-table --silent --location ../../__tablestorage__"
},
"dependencies": {
"@azure/functions": "catalog:",
"@cellix/api-services-spec": "workspace:*",
"@cellix/service-messaging-base": "workspace:*",
"@cellix/mongoose-seedwork": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@sthrift/application-services": "workspace:*",
"@sthrift/context-spec": "workspace:*",
"@sthrift/event-handler": "workspace:*",
"@sthrift/graphql": "workspace:*",
"@cellix/service-messaging-mock": "workspace:*",
"@sthrift/persistence": "workspace:*",
"@sthrift/rest": "workspace:*",
"@cellix/service-blob": "workspace:*",
"@cellix/service-payment-base": "workspace:*",
"@cellix/service-payment-mock": "workspace:*",
"@cellix/service-payment-cybersource": "workspace:*",
"@cellix/service-mongoose": "workspace:*",
"@cellix/service-otel": "workspace:*",
"@cellix/service-token-validation": "workspace:*",
"@cellix/service-messaging-twilio": "workspace:*"
},
"devDependencies": {
"@cellix/typescript-config": "workspace:*",
"@cellix/vitest-config": "workspace:*",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}